diff options
author | slaren <slarengh@gmail.com> | 2024-03-26 01:16:01 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-26 01:16:01 +0100 |
commit | 280345968dabc00d212d43e31145f5c9961a7604 (patch) | |
tree | 4d0ada8b59a4c15cb6d4fe1a6b4740a30dcdb0f2 /scripts/compare-commits.sh | |
parent | b06c16ef9f81d84da520232c125d4d8a1d273736 (diff) |
cuda : rename build flag to LLAMA_CUDA (#6299)
Diffstat (limited to 'scripts/compare-commits.sh')
-rwxr-xr-x | scripts/compare-commits.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/compare-commits.sh b/scripts/compare-commits.sh index 331c4b9c..d1272506 100755 --- a/scripts/compare-commits.sh +++ b/scripts/compare-commits.sh @@ -23,7 +23,7 @@ fi make_opts="" if [[ "$backend" == "cuda" ]]; then - make_opts="LLAMA_CUBLAS=1" + make_opts="LLAMA_CUDA=1" fi git checkout $1 |