Skip to content

Commit ee77ccb

Browse files
Zafar Takhirovsoumith
Zafar Takhirov
authored andcommittedNov 4, 2019
Enabling inplace relu
Summary: Pull Request resolved: pytorch#28710 Test Plan: Imported from OSS Differential Revision: D18146120 Pulled By: z-a-f fbshipit-source-id: d8f0982f5a2ae35f7deb34e67cdb64be700a9d6c
1 parent f7f5385 commit ee77ccb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎torch/nn/quantized/modules/activation.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -31,10 +31,10 @@ class ReLU(torch.nn.ReLU):
3131
"""
3232
def __init__(self, inplace=False):
3333
super(ReLU, self).__init__(inplace)
34-
assert not inplace, 'torch.nn.quantized.ReLU does not support inplace'
34+
self.inplace = inplace
3535

3636
def forward(self, input):
37-
return torch.nn.quantized.functional.relu(input)
37+
return torch.nn.quantized.functional.relu(input, inplace=self.inplace)
3838

3939
def _get_name(self):
4040
return 'QuantizedReLU'

0 commit comments

Comments
 (0)
Please sign in to comment.