We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731cd6e commit 7863610Copy full SHA for 7863610
easy_KCPP-ROCm_install.sh
100644
100755
@@ -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
8
#!/bin/bash
9
-git clone https://github.com/YellowRoseCx/koboldcpp-rocm.git -b main --depth 1 && \
-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
18
make LLAMA_HIPBLAS=1 -j4 && \
19
./koboldcpp.py
-
0 commit comments