We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329d579 commit 6047167Copy full SHA for 6047167
1 file changed
.github/workflows/simd-bench.yml
@@ -0,0 +1,27 @@
1
+name: SIMD Benchmark
2
+on:
3
+ workflow_dispatch:
4
+ push:
5
+ paths:
6
+ - 'src/hslm/simd_bench.zig'
7
+ - 'src/hslm/f16_utils.zig'
8
+ - 'src/hslm/simd_config.zig'
9
+
10
+jobs:
11
+ benchmark:
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - uses: actions/checkout@v4
15
+ - uses: ziglang/setup-zig@v1
16
+ with:
17
+ zig-version: 0.15.2
18
19
+ - name: Run SIMD Benchmarks
20
+ run: |
21
+ zig test src/hslm/simd_bench.zig 2>&1 | tee benchmark.txt
22
23
+ - name: Upload Results
24
+ uses: actions/upload-artifact@v4
25
26
+ name: benchmark-results
27
+ path: benchmark.txt
0 commit comments