Skip to content
Snippets Groups Projects
Commit d3b33c05 authored by Maxence Naud's avatar Maxence Naud Committed by Olivier BICHLER
Browse files

fix: remove check on bais in ConvDepthWise2D forward function

parent cff1ec49
No related branches found
No related tags found
2 merge requests!118v0.4.0,!103Multiple small fixes
...@@ -65,7 +65,6 @@ void Aidge::ConvDepthWiseImpl2D_cpu::forward() { ...@@ -65,7 +65,6 @@ void Aidge::ConvDepthWiseImpl2D_cpu::forward() {
AIDGE_ASSERT(op_.getInput(0), "missing input #0 in ConvDepthWise Operator"); AIDGE_ASSERT(op_.getInput(0), "missing input #0 in ConvDepthWise Operator");
AIDGE_ASSERT(op_.getInput(1), "missing input #1 in ConvDepthWise Operator"); AIDGE_ASSERT(op_.getInput(1), "missing input #1 in ConvDepthWise Operator");
AIDGE_ASSERT(op_.getInput(2), "missing input #2 in ConvDepthWise Operator");
AIDGE_ASSERT((op_.getInput(0)->nbDims() == 4), "support for 4-dimensions tensors only"); AIDGE_ASSERT((op_.getInput(0)->nbDims() == 4), "support for 4-dimensions tensors only");
......
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