Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
OpenDAS
ollama
Commits
a4564232
Unverified
Commit
a4564232
authored
Jan 25, 2024
by
mraiser
Committed by
GitHub
Jan 25, 2024
Browse files
Update gen_linux.sh to find libcudart in separate directory
parent
a643823f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
0 deletions
+7
-0
llm/generate/gen_linux.sh
llm/generate/gen_linux.sh
+7
-0
No files found.
llm/generate/gen_linux.sh
View file @
a4564232
...
...
@@ -128,6 +128,11 @@ if [ -z "${CUDA_LIB_DIR}" ] && [ -d /opt/cuda/targets/x86_64-linux/lib ]; then
CUDA_LIB_DIR
=
/opt/cuda/targets/x86_64-linux/lib
fi
# Allow override in case libcudart is in the wrong place
if
[
-z
"
${
CUDART_LIB_DIR
}
"
]
;
then
CUDART_LIB_DIR
=
"
${
CUDA_LIB_DIR
}
"
fi
if
[
-d
"
${
CUDA_LIB_DIR
}
"
]
;
then
echo
"CUDA libraries detected - building dynamic CUDA library"
init_vars
...
...
@@ -151,6 +156,8 @@ if [ -d "${CUDA_LIB_DIR}" ]; then
cp
"
${
CUDA_LIB_DIR
}
/
${
DEP
}
"
"
${
BUILD_DIR
}
/lib/"
elif
[
-e
"
${
CUDA_LIB_DIR
}
/
${
lib
}
.
${
CUDA_MAJOR
}
"
]
;
then
cp
"
${
CUDA_LIB_DIR
}
/
${
lib
}
.
${
CUDA_MAJOR
}
"
"
${
BUILD_DIR
}
/lib/"
elif
[
-e
"
${
CUDART_LIB_DIR
}
/
${
lib
}
"
]
;
then
cp
-d
${
CUDART_LIB_DIR
}
/
${
lib
}*
"
${
BUILD_DIR
}
/lib/"
else
cp
-d
"
${
CUDA_LIB_DIR
}
/
${
lib
}
*"
"
${
BUILD_DIR
}
/lib/"
fi
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment