diff options
author | Gregory Chanan <gchanan@fb.com> | 2019-04-22 10:19:17 -0700 |
---|---|---|
committer | Facebook Github Bot <facebook-github-bot@users.noreply.github.com> | 2019-04-22 10:26:29 -0700 |
commit | 5d5d67fa3f8e19a2ca972b6c20d4fdba264d560e (patch) | |
tree | 8356843d3d97e2f48862aaa02d39ca4c80a32c26 | |
parent | c30224ad21db93701da56bd91152dc0e40b28402 (diff) | |
download | pytorch-5d5d67fa3f8e19a2ca972b6c20d4fdba264d560e.tar.gz pytorch-5d5d67fa3f8e19a2ca972b6c20d4fdba264d560e.tar.bz2 pytorch-5d5d67fa3f8e19a2ca972b6c20d4fdba264d560e.zip |
Get rid of unnecessary matches_jit_signature: True specifications. (#19549)
Summary:
Unstacked version of https://github.com/pytorch/pytorch/pull/19431.
Pull Request resolved: https://github.com/pytorch/pytorch/pull/19549
Reviewed By: ezyang
Differential Revision: D15027965
Pulled By: gchanan
fbshipit-source-id: a4456326a999d77d6baeb0edbb1bb5db5208a8f8
-rw-r--r-- | aten/src/ATen/native/native_functions.yaml | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/aten/src/ATen/native/native_functions.yaml b/aten/src/ATen/native/native_functions.yaml index 795f528874..c32268bf3b 100644 --- a/aten/src/ATen/native/native_functions.yaml +++ b/aten/src/ATen/native/native_functions.yaml @@ -435,7 +435,6 @@ - func: conv_transpose3d(Tensor input, Tensor weight, Tensor? bias=None, int[3] stride=1, int[3] padding=0, int[3] output_padding=0, int groups=1, int[3] dilation=1) -> Tensor - func: copy_(Tensor(a!) self, Tensor src, bool non_blocking=False) -> Tensor(a!) - matches_jit_signature: True variants: function, method device_guard: False @@ -688,7 +687,6 @@ SparseCUDA: empty_sparse - func: _empty_affine_quantized(int[] size, *, ScalarType? dtype=None, Layout? layout=None, Device? device=None, bool? pin_memory=None, float scale=1, int zero_point=0) -> Tensor - matches_jit_signature: True dispatch: CPU: empty_affine_quantized_cpu |