Skip to content

Commit 1eb33c3

Browse files
committed
Merge branch 'main' into xiaowu/addConvBackward
2 parents c21f6ac + c57e9e7 commit 1eb33c3

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

onnxscript/function_libs/torch_lib/ops/core.py

+8-1
Original file line numberDiff line numberDiff line change
@@ -6636,7 +6636,14 @@ def aten_positive(self: TensorType) -> TensorType:
66366636
raise NotImplementedError()
66376637

66386638

6639-
@torch_op(("aten::pow.Tensor_Tensor", "aten::pow.Tensor_Scalar", "_operator::pow"))
6639+
@torch_op(
6640+
(
6641+
"aten::pow.Scalar",
6642+
"aten::pow.Tensor_Tensor",
6643+
"aten::pow.Tensor_Scalar",
6644+
"_operator::pow",
6645+
)
6646+
)
66406647
def aten_pow(self: TReal, exponent: TTensor) -> TReal:
66416648
"""pow(Tensor self, Tensor exponent) -> Tensor"""
66426649

requirements/lintrunner/requirements.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ lintrunner-adapters>=0.8.0
33
# RUFF, RUFF-FIX
44
ruff==0.5.0
55
# MYPY
6-
mypy==1.10.0
6+
mypy==1.10.1
77
types-PyYAML==6.0.12.11
88
# PYLINT
99
pylint==2.17.6

0 commit comments

Comments
 (0)