Skip to content

Commit 7b7713f

Browse files
committed
MAINT: floa64->float32 in test_signatures
1 parent e9c8606 commit 7b7713f

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

array_api_tests/test_signatures.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -130,11 +130,11 @@ def make_pretty_func(func_name: str, *args: Any, **kwargs: Any) -> str:
130130
{
131131
"stack": {"arrays": "[xp.ones((5,)), xp.ones((5,))]"},
132132
"iinfo": {"type": "xp.int64"},
133-
"finfo": {"type": "xp.float64"},
134-
"cholesky": {"x": "xp.asarray([[1, 0], [0, 1]], dtype=xp.float64)"},
135-
"inv": {"x": "xp.asarray([[1, 2], [3, 4]], dtype=xp.float64)"},
133+
"finfo": {"type": "xp.float32"},
134+
"cholesky": {"x": "xp.asarray([[1, 0], [0, 1]], dtype=xp.float32)"},
135+
"inv": {"x": "xp.asarray([[1, 2], [3, 4]], dtype=xp.float32)"},
136136
"solve": {
137-
a: "xp.asarray([[1, 2], [3, 4]], dtype=xp.float64)" for a in ["x1", "x2"]
137+
a: "xp.asarray([[1, 2], [3, 4]], dtype=xp.float32)" for a in ["x1", "x2"]
138138
},
139139
"outer": {"x1": "xp.ones((5,))", "x2": "xp.ones((5,))"},
140140
},

0 commit comments

Comments
 (0)