Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 7863610

Browse files
committedJul 26, 2023
Update easy_KCPP-ROCm_install.sh
1 parent 731cd6e commit 7863610

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed
 

Diff for: ‎easy_KCPP-ROCm_install.sh

100644100755
+15-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,19 @@
1+
# #!/bin/bash
2+
3+
# git clone https://github.com/YellowRoseCx/koboldcpp-rocm.git -b main --depth 1 && \
4+
# cd koboldcpp-rocm && \
5+
# make LLAMA_HIPBLAS=1 -j4 && \
6+
# ./koboldcpp.py
7+
18
#!/bin/bash
29

3-
git clone https://github.com/YellowRoseCx/koboldcpp-rocm.git -b main --depth 1 && \
4-
cd koboldcpp-rocm && \
10+
if [ "$(basename "$PWD")" = "koboldcpp-rocm" ]; then
11+
echo "Already inside 'koboldcpp-rocm' directory."
12+
else
13+
git clone https://github.com/YellowRoseCx/koboldcpp-rocm.git -b main --depth 1 && \
14+
cd "koboldcpp-rocm" || exit 1
15+
fi
16+
17+
518
make LLAMA_HIPBLAS=1 -j4 && \
619
./koboldcpp.py
7-

0 commit comments

Comments
 (0)
Please sign in to comment.