diff --git a/include/aidge/backend/TensorImpl.hpp b/include/aidge/backend/TensorImpl.hpp
index 77d6ac85796b46525fbc3668e0d52643bddd3ea7..08e9764218b260c5e5dd7b4ce8b6b6b9a579a647 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; }