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

Hotfix for issue aidge#172

parent 6d62d437
No related branches found
No related tags found
1 merge request!93Release v0.3.0
Pipeline #54085 passed
...@@ -67,7 +67,7 @@ AIDGE_ASSERT(op_.getInput(0), "missing input #0 in Conv Operator."); ...@@ -67,7 +67,7 @@ AIDGE_ASSERT(op_.getInput(0), "missing input #0 in Conv Operator.");
op_.dilationDims(), op_.dilationDims(),
op_.kernelDims(), op_.kernelDims(),
op_.getInput(0)->template dims<3>(), // input dimensions op_.getInput(0)->template dims<3>(), // input dimensions
dynamic_cast<const Conv_Op<2>&>(mOp).outChannels(), // outChannels dynamic_cast<const Conv_Op<1>&>(mOp).outChannels(), // outChannels
input0.getImpl()->rawPtr(), // input input0.getImpl()->rawPtr(), // input
input1.getImpl()->rawPtr(), // weight input1.getImpl()->rawPtr(), // weight
op_.getInput(2) ? input2.getImpl()->rawPtr() : nullptr, // bias op_.getInput(2) ? input2.getImpl()->rawPtr() : nullptr, // bias
......
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