From 17564ce31c8e978b842e6cb1d820cfb54d81d31c Mon Sep 17 00:00:00 2001 From: Justin Chu Date: Mon, 22 Jul 2024 22:47:08 +0000 Subject: [PATCH] rshift --- onnxscript/function_libs/torch_lib/ops/core.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/onnxscript/function_libs/torch_lib/ops/core.py b/onnxscript/function_libs/torch_lib/ops/core.py index 122e8e889..d542fffe2 100644 --- a/onnxscript/function_libs/torch_lib/ops/core.py +++ b/onnxscript/function_libs/torch_lib/ops/core.py @@ -4928,12 +4928,6 @@ def aten_logsumexp(self: TFloat, dim: INT64, keepdim: int = False) -> TFloat: return result -def aten_lshift(self: TensorType, other: TensorType) -> TensorType: - """__lshift__.Tensor(Tensor self, Tensor other) -> Tensor""" - - raise NotImplementedError() - - def aten_lstm_cell( input: TensorType, hx: Sequence[TensorType], @@ -7324,12 +7318,6 @@ def aten_rrelu( raise NotImplementedError() -def aten_rshift(self: TensorType, other: TensorType) -> TensorType: - """__rshift__.Tensor(Tensor self, Tensor other) -> Tensor""" - - raise NotImplementedError() - - @torch_op("aten::rsqrt") def aten_rsqrt(self: TFloatOrBFloat16) -> TFloatOrBFloat16: """rsqrt(Tensor self) -> Tensor"""