Skip to content
Snippets Groups Projects
Commit d046396a authored by Olivier BICHLER's avatar Olivier BICHLER
Browse files

Use fmt::print instead of printf

parent dd527508
No related branches found
No related tags found
2 merge requests!50version 0.2.0,!37Support for recurrent networks
Pipeline #40077 failed
...@@ -87,4 +87,4 @@ void Aidge::ConcatImpl_cpu::forward() { ...@@ -87,4 +87,4 @@ void Aidge::ConcatImpl_cpu::forward() {
getCPUPtr(mOp.getRawOutput(0))); getCPUPtr(mOp.getRawOutput(0)));
} }
void Aidge::ConcatImpl_cpu::backward() { printf("Not implemented yet.\n"); } void Aidge::ConcatImpl_cpu::backward() { fmt::print("Not implemented yet.\n"); }
\ No newline at end of file \ No newline at end of file
...@@ -79,4 +79,4 @@ void Aidge::SliceImpl_cpu::forward() { ...@@ -79,4 +79,4 @@ void Aidge::SliceImpl_cpu::forward() {
mNbProducedData[0] += getRequiredMemory(0, {}); mNbProducedData[0] += getRequiredMemory(0, {});
} }
void Aidge::SliceImpl_cpu::backward() { printf("Not implemented yet.\n"); } void Aidge::SliceImpl_cpu::backward() { fmt::print("Not implemented yet.\n"); }
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