Skip to content
Snippets Groups Projects
Commit 91eff9cb authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Remove annoying print in producer @olivierbichler.

parent 0356759a
No related branches found
No related tags found
No related merge requests found
...@@ -105,7 +105,7 @@ public: ...@@ -105,7 +105,7 @@ public:
void forward() override final; void forward() override final;
void backward() override final { void backward() override final {
fmt::print("Basic Producer backward() function.\n"); // fmt::print("Basic Producer backward() function.\n");
} }
void setOutput(const Aidge::IOIndex_t outputIdx, std::shared_ptr<Aidge::Data>&& data) override { void setOutput(const Aidge::IOIndex_t outputIdx, std::shared_ptr<Aidge::Data>&& data) override {
if (getAttr<ProdAttr::Constant>()) { if (getAttr<ProdAttr::Constant>()) {
......
...@@ -72,9 +72,9 @@ void Aidge::Producer_Op::forward() { ...@@ -72,9 +72,9 @@ void Aidge::Producer_Op::forward() {
if (!backend().empty()) { if (!backend().empty()) {
mImpl->forward(); mImpl->forward();
} }
else { // else {
fmt::print("Basic Producer forward() function.\n"); // fmt::print("Basic Producer forward() function.\n");
} // }
runHooks(); runHooks();
} }
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