MCPcopy Create free account
hub / github.com/MegEngine/MegEngine / forward

Method forward

imperative/python/megengine/module/conv.py:1056–1065  ·  view source on GitHub ↗
(self, inp)

Source from the content-addressed store, hash-verified

1054 return (1, self.out_channels, 1, 1, 1)
1055
1056 def forward(self, inp):
1057 return conv_transpose3d(
1058 inp,
1059 self.weight,
1060 self.bias,
1061 self.stride,
1062 self.padding,
1063 self.output_padding,
1064 self.dilation,
1065 )
1066
1067
1068class RegionRestrictedConv(_ConvNd):

Callers

nothing calls this directly

Calls 1

conv_transpose3dFunction · 0.85

Tested by

no test coverage detected