Skip to content

Commit

Permalink
rshift
Browse files Browse the repository at this point in the history
  • Loading branch information
justinchuby committed Jul 22, 2024
1 parent 4e7acde commit 17564ce
Showing 1 changed file with 0 additions and 12 deletions.
12 changes: 0 additions & 12 deletions onnxscript/function_libs/torch_lib/ops/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -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],
Expand Down Expand Up @@ -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"""
Expand Down

0 comments on commit 17564ce

Please sign in to comment.