We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c21f6ac + c57e9e7 commit 1eb33c3Copy full SHA for 1eb33c3
onnxscript/function_libs/torch_lib/ops/core.py
@@ -6636,7 +6636,14 @@ def aten_positive(self: TensorType) -> TensorType:
6636
raise NotImplementedError()
6637
6638
6639
-@torch_op(("aten::pow.Tensor_Tensor", "aten::pow.Tensor_Scalar", "_operator::pow"))
+@torch_op(
6640
+ (
6641
+ "aten::pow.Scalar",
6642
+ "aten::pow.Tensor_Tensor",
6643
+ "aten::pow.Tensor_Scalar",
6644
+ "_operator::pow",
6645
+ )
6646
+)
6647
def aten_pow(self: TReal, exponent: TTensor) -> TReal:
6648
"""pow(Tensor self, Tensor exponent) -> Tensor"""
6649
requirements/lintrunner/requirements.txt
@@ -3,7 +3,7 @@ lintrunner-adapters>=0.8.0
3
# RUFF, RUFF-FIX
4
ruff==0.5.0
5
# MYPY
6
-mypy==1.10.0
+mypy==1.10.1
7
types-PyYAML==6.0.12.11
8
# PYLINT
9
pylint==2.17.6
0 commit comments