We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 83ac04f commit 61bf3c1Copy full SHA for 61bf3c1
array_api_strict/tests/test_flags.py
@@ -308,6 +308,7 @@ def test_api_version_2023_12(func_name):
308
'take_along_axis': lambda: xp.take_along_axis(xp.zeros((2, 3)),
309
xp.zeros((1, 4), dtype=xp.int64)),
310
'count_nonzero': lambda: xp.count_nonzero(xp.arange(3)),
311
+ 'cumulative_prod': lambda: xp.cumulative_prod(xp.arange(1, 5)),
312
}
313
314
@pytest.mark.parametrize('func_name', api_version_2024_12_examples.keys())
0 commit comments