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

Method Relu

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

Source from the content-addressed store, hash-verified

168 return brew.instance_norm(self, *args, order=self.order, **kwargs)
169
170 def Relu(self, *args, **kwargs):
171 return brew.relu(
172 self, *args, order=self.order, use_cudnn=self.use_cudnn, **kwargs
173 )
174
175 def PRelu(self, *args, **kwargs):
176 return brew.prelu(self, *args, **kwargs)

Callers 15

test_simple_cnnmodelMethod · 0.95
AlexNetFunction · 0.95
OverFeatFunction · 0.95
VGGAFunction · 0.95
InceptionFunction · 0.95
conv_bn_reluMethod · 0.80
bottleneck_blockMethod · 0.80
basic_blockMethod · 0.80

Calls 1

reluMethod · 0.45