Skip to content

Commit 0a229a2

Browse files
[CI] hack
1 parent c2cca18 commit 0a229a2

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/integration-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ on:
1010
jobs:
1111

1212
Integration-Tests:
13-
14-
runs-on: [self-hosted, V100]
13+
14+
runs-on: ubuntu-latest # [self-hosted, V100]
1515

1616
steps:
1717

@@ -44,6 +44,7 @@ jobs:
4444
pytest -vs .
4545
4646
- name: Regression tests
47+
if: false
4748
run: |
4849
cd python/test/regression
4950
sudo nvidia-smi -i 0 -pm 1

python/test/unit/language/test_core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -641,7 +641,7 @@ def change_value(Lock):
641641
Lock = torch.zeros((1,), device='cuda', dtype=torch.int32)
642642
change_value[(1,)](Lock)
643643

644-
assert(Lock[0] == 1)
644+
assert (Lock[0] == 1)
645645

646646
# 2. only one block enters the critical section
647647
@triton.jit

0 commit comments

Comments
 (0)