Skip to content

Commit

Permalink
Merge pull request #720
Browse files Browse the repository at this point in the history
  • Loading branch information
luraess authored Jan 10, 2025
2 parents 8c937e3 + f7af9fe commit c8a5309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/discovery/utils.jl
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ function find_ld_lld(rocm_path::String)
lld_name = "ld.lld" * (Sys.iswindows() ? ".exe" : "")
for subdir in (joinpath("llvm", "bin"), "bin")
exp_ld_path = joinpath(rocm_path, subdir, lld_name)
ispath(exp_ld_path) || contiune
ispath(exp_ld_path) || continue
try
tmpfile = tempname(;cleanup=false)
run(pipeline(`$exp_ld_path -v`; stdout=tmpfile))
Expand Down

0 comments on commit c8a5309

Please sign in to comment.