diff --git a/src/operator/Conv.cpp b/src/operator/Conv.cpp index 3abd144f882a02c271f072b963714351f2dcaf47..42c47cb81d95569306beaf25f28bb7bd56bfe734 100644 --- a/src/operator/Conv.cpp +++ b/src/operator/Conv.cpp @@ -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);