Skip to content

Commit

Permalink
CUDA のパスを修正する
Browse files Browse the repository at this point in the history
  • Loading branch information
enm10k committed Jan 18, 2024
1 parent bf46c05 commit 793250e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run.py
Original file line number Diff line number Diff line change
Expand Up @@ -709,7 +709,7 @@ def install_cuda_windows(version, source_dir, build_dir, install_dir):
mkdir_p(os.path.join(install_dir, 'cuda'))
with cd(os.path.join(build_dir, 'cuda')):
cmd(['7z', 'x', file])
os.rename(os.path.join(build_dir, 'cuda', 'cuda_nvcc'), os.path.join(install_dir, 'cuda', 'nvcc'))
os.rename(os.path.join(build_dir, 'cuda', 'cuda_nvcc', 'nvcc'), os.path.join(install_dir, 'cuda', 'nvcc'))


@versioned
Expand Down

0 comments on commit 793250e

Please sign in to comment.