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 bcb0439 commit 3dae753Copy full SHA for 3dae753
.github/workflows/array-api.yml
@@ -17,7 +17,7 @@ on:
17
# Automatically stop old builds on the same branch/PR
18
concurrency:
19
group: ${{ github.workflow }}-${{ github.ref }}
20
- cancel-in-progress: true
+ cancel-in-progress: false
21
22
jobs:
23
array-api-tests:
ndonnx/_funcs.py
@@ -609,6 +609,10 @@ def roll(
609
*,
610
axis: int | tuple[int, ...] | None = None,
611
) -> Array:
612
+ print(f"{x=}")
613
+ print(f"{shift=}")
614
+ print(f"{axis=}")
615
+
616
return Array._from_tyarray(x._tyarray.roll(shift=shift, axis=axis))
617
618
0 commit comments