Skip to content

Commit 48b950a

Browse files
committed
feat(aten::conv_transpose): Add support for dilated and group
deconvolution Signed-off-by: Naren Dasan <naren@narendasan.com> Signed-off-by: Naren Dasan <narens@nvidia.com>
1 parent 842a567 commit 48b950a

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

core/conversion/converters/impl/conv_deconv.cpp

+3
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,9 @@ auto conv_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns()
4545

4646
deconv->setStrideNd(stride);
4747
deconv->setPaddingNd(padding);
48+
deconv->setDilationNd(dilation);
49+
deconv->setNbGroups(groups);
50+
4851
new_layer = deconv;
4952
} else {
5053
nvinfer1::IConvolutionLayer* conv;

0 commit comments

Comments
 (0)