Skip to content

Commit

Permalink
Verbose runtime monitoring for example scripts in workflow pipeline.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Sep 28, 2024
1 parent c9e1f37 commit 61e6301
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/build_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,3 +65,13 @@ jobs:
./dist/zhivo-cuda ./test/types.zhv
end=$(date +%s%3N)
echo "Elapsed time: $((end - start)) ms"
- name: Run examples (x86)
run: |
/usr/bin/time -v ./dist/zhivo-x86 ./examples/hello.zhv
/usr/bin/time -v ./dist/zhivo-x86 ./examples/99-beers.zhv
- name: Run examples (CUDA)
run: |
/usr/bin/time -v ./dist/zhivo-cuda ./examples/hello.zhv
/usr/bin/time -v ./dist/zhivo-cuda ./examples/99-beers.zhv

0 comments on commit 61e6301

Please sign in to comment.