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
No related merge requests found
...@@ -190,7 +190,9 @@ public: ...@@ -190,7 +190,9 @@ public:
/** /**
* @brief Set every element of the implementation to zero. * @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; } 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