Skip to content

Commit

Permalink
Remove unused _convolution_nogroup op (#68829)
Browse files Browse the repository at this point in the history
Summary: Pull Request resolved: pytorch/pytorch#68829

Test Plan: Imported from OSS

Reviewed By: zou3519, albanD

Differential Revision: D32627578

Pulled By: jbschlosser

fbshipit-source-id: 8a4c0ac58aae184a465b1fd40cce880a60d67339
  • Loading branch information
jbschlosser authored and facebook-github-bot committed Dec 2, 2021
1 parent 1db0936 commit 4b7c7bb
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions tb_plugin/torch_tb_profiler/profiler/tensor_core.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,7 @@ def __contains__(cls, item):

class TC_OP_Allowlist(metaclass=TC_Allowlist_Meta):
# Refer to https://github.com/pytorch/pytorch/blob/69b2bf70f9c0e591ce5e566afa59e19618031ead/aten/src/ATen/autocast_mode.cpp#L290-L351
allowlist = ["aten::_convolution", "aten::_convolution_nogroup",
"aten::conv1d", "aten::conv2d", "aten::conv3d", "aten::conv_tbc",
allowlist = ["aten::_convolution", "aten::conv1d", "aten::conv2d", "aten::conv3d", "aten::conv_tbc",
"aten::conv_transpose1d", "aten::conv_transpose2d", "aten::conv_transpose3d",
"aten::convolution", "aten::cudnn_convolution", "aten::cudnn_convolution_transpose",
"aten::prelu", "aten::addmm", "aten::addmv", "aten::addr",
Expand Down

0 comments on commit 4b7c7bb

Please sign in to comment.