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:
void forward() 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 {
if (getAttr<ProdAttr::Constant>()) {
......
......@@ -72,9 +72,9 @@ void Aidge::Producer_Op::forward() {
if (!backend().empty()) {
mImpl->forward();
}
else {
fmt::print("Basic Producer forward() function.\n");
}
// else {
// fmt::print("Basic Producer forward() function.\n");
// }
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