Skip to content

Commit fc0f8e7

Browse files
committed
fix
1 parent 731beeb commit fc0f8e7

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

onnxscript/tests/function_libs/torch_lib/ops_test_data.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -921,7 +921,9 @@ def _where_input_wrangler(
921921
),
922922
TorchLibOpInfo("log2", core_ops.aten_log2),
923923
TorchLibOpInfo("logaddexp", core_ops.aten_logaddexp, tolerance={torch.float16: (1, 1e-4)}),
924-
TorchLibOpInfo("logaddexp2", core_ops.aten_logaddexp2),
924+
TorchLibOpInfo(
925+
"logaddexp2", core_ops.aten_logaddexp2, tolerance={torch.float16: (2e-2, 6e-4)}
926+
),
925927
TorchLibOpInfo(
926928
"logcumsumexp", core_ops.aten_logcumsumexp, tolerance={torch.float16: (1e-2, 1e-1)}
927929
),

0 commit comments

Comments
 (0)