MCPcopy Index your code
hub / github.com/pytorch/pytorch / Conv

Method Conv

caffe2/python/cnn.py:89–98  ·  view source on GitHub ↗
(self, *args, **kwargs)

Source from the content-addressed store, hash-verified

87 )
88
89 def Conv(self, *args, **kwargs):
90 return brew.conv(
91 self,
92 *args,
93 use_cudnn=self.use_cudnn,
94 order=self.order,
95 cudnn_exhaustive_search=self.cudnn_exhaustive_search,
96 ws_nbytes_limit=self.ws_nbytes_limit,
97 **kwargs
98 )
99
100 def ConvTranspose(self, *args, **kwargs):
101 return brew.conv_transpose(

Callers 15

test_simple_cnnmodelMethod · 0.95
AlexNetFunction · 0.95
OverFeatFunction · 0.95
VGGAFunction · 0.95
InceptionFunction · 0.95
add_shortcutMethod · 0.80
conv_bnMethod · 0.80
test_timingsMethod · 0.80
_base_test_netMethod · 0.80

Calls 1

convMethod · 0.45