Skip to content

Commit 3dae753

Browse files
committed
Debug roll
1 parent bcb0439 commit 3dae753

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/array-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ on:
1717
# Automatically stop old builds on the same branch/PR
1818
concurrency:
1919
group: ${{ github.workflow }}-${{ github.ref }}
20-
cancel-in-progress: true
20+
cancel-in-progress: false
2121

2222
jobs:
2323
array-api-tests:

ndonnx/_funcs.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -609,6 +609,10 @@ def roll(
609609
*,
610610
axis: int | tuple[int, ...] | None = None,
611611
) -> Array:
612+
print(f"{x=}")
613+
print(f"{shift=}")
614+
print(f"{axis=}")
615+
612616
return Array._from_tyarray(x._tyarray.roll(shift=shift, axis=axis))
613617

614618

0 commit comments

Comments
 (0)