Skip to content

Commit fdb1ed6

Browse files
committed
test push
1 parent 5b8c698 commit fdb1ed6

2 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/nvidia_workflow.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,10 @@ jobs:
1818
container:
1919
image: nvidia/cuda:12.4.0-devel-ubuntu22.04
2020
steps:
21-
- uses: actions/checkout@v3
21+
- name: Checkout code
22+
uses: actions/checkout@v4
23+
with:
24+
ref: ${{ github.event.pull_request.head.sha }}
2225

2326
- name: Setup Python
2427
uses: actions/setup-python@v5

examples/eval.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ def main():
334334
return 111
335335

336336
if len(sys.argv) < 3:
337-
return 2
337+
return 222
338338

339339
mode = sys.argv[1].strip()
340340
print(f"Running in mode {mode}")
@@ -381,8 +381,9 @@ def main():
381381
run_profiling(logger, tests)
382382
else:
383383
# TODO: Implement script mode
384+
logger.log(mode, "not implemented")
384385
print(f"mode {mode} not implemented")
385-
return 2
386+
return 333
386387

387388

388389
if __name__ == "__main__":

0 commit comments

Comments
 (0)