Skip to content

Commit

Permalink
use needs to avoid waiting prevstage
Browse files Browse the repository at this point in the history
  • Loading branch information
yhmtsai committed Jul 1, 2022
1 parent d6c597a commit c9e4071
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,8 @@ test/cuda110/mvapich2/gcc/cuda/debug/shared:
SLURM_PARTITION: "accelerated"
SLURM_GRES: "gpu:1"
SLURM_TIME: "00:45:00"
dependencies: [ "build/cuda110/mvapich2/gcc/cuda/debug/shared" ]
dependencies: null
needs: [ "build/cuda110/mvapich2/gcc/cuda/debug/shared" ]


build/cuda110/nompi/clang/cuda/release/static:
Expand Down Expand Up @@ -399,7 +400,8 @@ test/cuda110/nompi/clang/cuda/release/static:
SLURM_PARTITION: "accelerated"
SLURM_GRES: "gpu:1"
SLURM_TIME: "00:45:00"
dependencies: [ "build/cuda110/nompi/clang/cuda/release/static" ]
dependencies: null
needs: [ "build/cuda110/nompi/clang/cuda/release/static" ]


build/cuda110/nompi/intel/cuda/debug/static:
Expand Down Expand Up @@ -432,7 +434,8 @@ test/cuda110/nompi/intel/cuda/debug/static:
SLURM_PARTITION: "accelerated"
SLURM_GRES: "gpu:1"
SLURM_TIME: "00:45:00"
dependencies: [ "build/cuda110/nompi/intel/cuda/debug/static" ]
dependencies: null
needs: [ "build/cuda110/nompi/intel/cuda/debug/static" ]


# cuda 11.4 and friends
Expand Down Expand Up @@ -918,6 +921,8 @@ gh-pages:
- git add -A
- git diff --quiet HEAD ||
(git commit -m "Update documentation from ${CURRENT_SHA}" && git push)
dependencies: null
needs: [ "sync" ]


threadsanitizer:
Expand Down Expand Up @@ -1037,4 +1042,5 @@ benchmark-cuda-spmv:
BENCHMARK: "spmv"
EXECUTOR: "cuda"
SYSTEM_NAME: "A100"
dependencies: [ "benchmark-cuda-spmv-build" ]
dependencies: null
needs: [ "benchmark-cuda-spmv-build" ]

0 comments on commit c9e4071

Please sign in to comment.