Skip to content

Commit

Permalink
feat(aten::conv_transpose): Add support for dilated and group
Browse files Browse the repository at this point in the history
deconvolution

Signed-off-by: Naren Dasan <[email protected]>
Signed-off-by: Naren Dasan <[email protected]>
  • Loading branch information
narendasan committed Jul 14, 2020
1 parent 842a567 commit 48b950a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/conversion/converters/impl/conv_deconv.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,9 @@ auto conv_registrations TRTORCH_UNUSED = RegisterNodeConversionPatterns()

deconv->setStrideNd(stride);
deconv->setPaddingNd(padding);
deconv->setDilationNd(dilation);
deconv->setNbGroups(groups);

new_layer = deconv;
} else {
nvinfer1::IConvolutionLayer* conv;
Expand Down

0 comments on commit 48b950a

Please sign in to comment.