Use -p 2 and no arg for JuliaStream in CI
This commit is contained in:
parent
d675875dcd
commit
418315543c
5
.github/workflows/main.yaml
vendored
5
.github/workflows/main.yaml
vendored
@ -18,9 +18,12 @@ jobs:
|
||||
- name: Test run ThreadedStream.jl
|
||||
if: ${{ ! cancelled() }}
|
||||
run: julia --threads 2 --project src/ThreadedStream.jl --arraysize 2048
|
||||
- name: Test run DistributedStream.jl
|
||||
- name: Test run DistributedStream.jl (no flag)
|
||||
if: ${{ ! cancelled() }}
|
||||
run: julia --project src/DistributedStream.jl --arraysize 2048
|
||||
- name: Test run DistributedStream.jl (-p 2)
|
||||
if: ${{ ! cancelled() }}
|
||||
run: julia -p 2 --project src/DistributedStream.jl --arraysize 2048
|
||||
- name: Test run CUDAStream.jl
|
||||
if: ${{ ! cancelled() }}
|
||||
run: julia --project src/CUDAStream.jl --list
|
||||
|
||||
Loading…
Reference in New Issue
Block a user