Skip to content
Snippets Groups Projects

feat_operator_convtranspose

Merged Grégoire Kubler requested to merge feat_operator_convtranspose into dev
1 file
+ 4
4
Compare changes
  • Side-by-side
  • Inline
+ 4
4
@@ -240,15 +240,15 @@ std::shared_ptr<Aidge::Node> Aidge::Conv(
AIDGE_ASSERT(DIM<=MaxDim,"{}: Too many kernel dimensions required, maximum allowed : {} ", Conv_Op<DIM>::Type, MaxDim);
AIDGE_ASSERT(!std::any_of(dilationDims.cbegin(),
dilationDims.cend(),
[](DimSize_t val) { return val == 0; }),
"Conv : at least of of the dilation dimension is 0, expecting "
[](DimSize_t val) { return val <= 0; }),
"Conv : at least of of the dilation dimension is <= 0, expecting "
"strictly positive values. Got {}",
Conv_Op<DIM>::Type,
dilationDims);
AIDGE_ASSERT(!std::any_of(strideDims.cbegin(),
strideDims.cend(),
[](DimSize_t val) { return val == 0; }),
"{}: at least one of the stride dimension is 0, expecting "
[](DimSize_t val) { return val <= 0; }),
"{}: at least one of the stride dimension is 0, <=expecting "
"strictly positive values. Got {}.",
Conv_Op<DIM>::Type,
strideDims);
Loading