Skip to content

Commit

Permalink
Time lapsed monitoring on x86 and CUDA test suite runs.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Sep 28, 2024
1 parent 355622d commit c9e1f37
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ jobs:
- name: Run test scripts (x86)
run: |
start=$(date +%s%3N)
./dist/zhivo-x86 ./test/arithmetic.zhv
./dist/zhivo-x86 ./test/array.zhv
./dist/zhivo-x86 ./test/digits.zhv
Expand All @@ -45,9 +46,12 @@ jobs:
./dist/zhivo-x86 ./test/regex.zhv
./dist/zhivo-x86 ./test/test.zhv
./dist/zhivo-x86 ./test/types.zhv
end=$(date +%s%3N)
echo "Elapsed time: $((end - start)) ms"
- name: Run test scripts (CUDA)
run: |
start=$(date +%s%3N)
./dist/zhivo-cuda ./test/arithmetic.zhv
./dist/zhivo-cuda ./test/array.zhv
./dist/zhivo-cuda ./test/digits.zhv
Expand All @@ -59,3 +63,5 @@ jobs:
./dist/zhivo-cuda ./test/regex.zhv
./dist/zhivo-cuda ./test/test.zhv
./dist/zhivo-cuda ./test/types.zhv
end=$(date +%s%3N)
echo "Elapsed time: $((end - start)) ms"

0 comments on commit c9e1f37

Please sign in to comment.