Skip to content

Commit de00424

Browse files
authored
Don't assert that artifacts were downloaded.
Not all artifacts are available for every CUDA version.
1 parent 5efcee6 commit de00424

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

deps/bindeps.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -804,10 +804,10 @@ in that environment.
804804
"""
805805
function download_artifacts()
806806
toolkit = find_artifact_cuda()
807-
@assert nothing !== cuda_artifact("CUDNN", toolkit.release)
808-
@assert nothing !== cuda_artifact("CUTENSOR", toolkit.release)
809-
@assert nothing !== cuda_artifact("NCCL", toolkit.release)
807+
cuda_artifact("CUDNN", toolkit.release)
808+
cuda_artifact("CUTENSOR", toolkit.release)
809+
cuda_artifact("NCCL", toolkit.release)
810810

811-
@assert nothing !== generic_artifact("CUDA_compat")
812-
@assert nothing !== generic_artifact("cuQuantum")
811+
generic_artifact("CUDA_compat")
812+
generic_artifact("cuQuantum")
813813
end

0 commit comments

Comments
 (0)