Skip to content

Commit

Permalink
Fix -j argument in test runner
Browse files Browse the repository at this point in the history
  • Loading branch information
JosseVanDelm committed Dec 19, 2023
1 parent 809000b commit 016e202
Showing 1 changed file with 12 additions and 12 deletions.
24 changes: 12 additions & 12 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,10 +48,10 @@ jobs:
- name: Run Tests
working-directory: target/snitch_cluster
run: |
./run.py --simulator verilator -j \
./run.py --simulator verilator \
sw/runtime.yaml sw/snitch-cluster-runtime.yaml sw/custom-fp.yaml \
sw/standard-fp.yaml sw/openmp.yaml sw/snitch-cluster-openmp.yaml \
sw/blas.yaml sw/dnn.yaml
sw/blas.yaml sw/dnn.yaml -j
##############################################
Expand All @@ -76,9 +76,9 @@ jobs:
- name: Run Tests
working-directory: target/snitch_cluster
run: |-
./run.py --simulator verilator -j \
./run.py --simulator verilator \
sw/runtime.yaml sw/custom-fp.yaml sw/standard-fp.yaml \
sw/openmp.yaml sw/blas.yaml sw/dnn.yaml sw/snax-mac-run.yaml \
sw/openmp.yaml sw/blas.yaml sw/dnn.yaml sw/snax-mac-run.yaml -j
sw-snax-mac-cluster-vlt-generic:
name: Simulate SW on SNAX MAC Cluster w/ Verilator (Generic LLVM)
Expand All @@ -101,8 +101,8 @@ jobs:
- name: Run Tests
working-directory: target/snitch_cluster
run: |-
./run.py --simulator verilator -j \
sw/runtime.yaml sw/standard-fp.yaml sw/snax-mac-run.yaml
./run.py --simulator verilator \
sw/runtime.yaml sw/standard-fp.yaml sw/snax-mac-run.yaml -j
sw-snax-gemm-cluster-vlt:
name: Simulate SW on SNAX GEMM Cluster w/ Verilator
Expand All @@ -123,9 +123,9 @@ jobs:
- name: Run Tests
working-directory: target/snitch_cluster
run: |-
./run.py --simulator verilator -j \
./run.py --simulator verilator \
sw/runtime.yaml sw/custom-fp.yaml sw/standard-fp.yaml \
sw/openmp.yaml sw/blas.yaml sw/dnn.yaml sw/snax-gemm-run.yaml \
sw/openmp.yaml sw/blas.yaml sw/dnn.yaml sw/snax-gemm-run.yaml -j
sw-snax-gemm-cluster-vlt-generic:
name: Simulate SW on SNAX GEMM Cluster w/ Verilator (Generic LLVM
Expand All @@ -148,8 +148,8 @@ jobs:
- name: Run Tests
working-directory: target/snitch_cluster
run: |-
./run.py --simulator verilator -j \
sw/runtime.yaml sw/standard-fp.yaml sw/snax-gemm-run.yaml
./run.py --simulator verilator \
sw/runtime.yaml sw/standard-fp.yaml sw/snax-gemm-run.yaml -j
############################################
# Build SW on Snitch Cluster w/ Banshee #
Expand All @@ -173,7 +173,7 @@ jobs:
SNITCH_LOG: info
working-directory: target/snitch_cluster
run: |
./run.py --simulator banshee -j \
./run.py --simulator banshee \
sw/runtime.yaml sw/snitch-cluster-runtime.yaml sw/custom-fp.yaml \
sw/standard-fp.yaml sw/openmp.yaml sw/snitch-cluster-openmp.yaml \
sw/blas.yaml sw/dnn.yaml
sw/blas.yaml sw/dnn.yaml -j

0 comments on commit 016e202

Please sign in to comment.