add dilation for conv 3d layers + test for 3d conv w/ dilation (#1802)

This commit is contained in:
Awni Hannun
2025-01-28 06:17:07 -08:00
committed by GitHub
parent ccb61d7aae
commit 1017ac4a9e
4 changed files with 22 additions and 5 deletions

View File

@@ -3540,7 +3540,7 @@ Shape conv_out_shape(
if (out_shape[i] <= 0) {
std::ostringstream msg;
msg << "[conv] Spatial dimensions of input after padding "
msg << "[conv] Spatial dimensions of input after padding"
<< " cannot be smaller than weight spatial dimensions."
<< " Got error at axis " << i << " for input with shape " << in_shape
<< ", padding low " << pads_lo << ", padding high " << pads_hi