Skip to content
Snippets Groups Projects
Commit 0c6e3302 authored by Jerome Hue's avatar Jerome Hue
Browse files

Remove debug print

parent 01c74a6a
No related branches found
No related tags found
3 merge requests!414Update version 0.5.1 -> 0.6.0,!408[Add] Dropout Operator,!342feat: Backward of Stack Operator
Pipeline #66008 passed
This commit is part of merge request !342. Comments created here will be created in the context of that merge request.
......@@ -68,9 +68,6 @@ void StackOpImpl::backward() {
auto inputGrad = op.getInput(0)->grad();
auto outputGrad = op.getOutput(0)->grad();
Log::notice("Size of stack in grad : {}", inputGrad->size());
Log::notice("Size of stack out grad : {}", outputGrad->size());
*inputGrad = outputGrad->extract({op.backwardStep() -1 }).clone();
}
......
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