From a925db94c99246b5bc8653c01ffa7fcd09c10dff Mon Sep 17 00:00:00 2001 From: NAUD Maxence <maxence.naud@cea.fr> Date: Tue, 27 Feb 2024 14:30:05 +0000 Subject: [PATCH] TensorImpl::zeros() isnot pure virtual anymore --- include/aidge/backend/TensorImpl.hpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/include/aidge/backend/TensorImpl.hpp b/include/aidge/backend/TensorImpl.hpp index 77d6ac857..08e976421 100644 --- a/include/aidge/backend/TensorImpl.hpp +++ b/include/aidge/backend/TensorImpl.hpp @@ -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; } -- GitLab