Skip to content
Snippets Groups Projects
Commit a925db94 authored by Maxence Naud's avatar Maxence Naud
Browse files

TensorImpl::zeros() isnot pure virtual anymore

parent 3cf3645d
No related branches found
No related tags found
2 merge requests!105version 0.2.0,!89Increase the number of unit-tests for Tensor
Pipeline #40045 failed
......@@ -190,7 +190,9 @@ public:
/**
* @brief Set every element of the implementation to zero.
*/
virtual void zeros() = 0;
virtual void zeros() {
printf("Not implemented yet");
}
constexpr const char *backend() const { return mBackend; }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment