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

Method MaxPool

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

Source from the content-addressed store, hash-verified

196 return brew.accuracy(self, *args, **kwargs)
197
198 def MaxPool(self, *args, **kwargs):
199 return brew.max_pool(
200 self, *args, use_cudnn=self.use_cudnn, order=self.order, **kwargs
201 )
202
203 def MaxPoolWithIndex(self, *args, **kwargs):
204 return brew.max_pool_with_index(self, *args, order=self.order, **kwargs)

Callers 12

test_simple_cnnmodelMethod · 0.95
AlexNetFunction · 0.95
OverFeatFunction · 0.95
VGGAFunction · 0.95
InceptionFunction · 0.95
add_model_opsMethod · 0.80
max_poolFunction · 0.80
testMaxPoolingSpeedMethod · 0.80
_InceptionModuleFunction · 0.80

Calls

no outgoing calls

Tested by 5

test_simple_cnnmodelMethod · 0.76
add_model_opsMethod · 0.64
testMaxPoolingSpeedMethod · 0.64