From: Georgi Gerganov Date: Tue, 2 May 2023 18:27:02 +0000 (+0300) Subject: scripts : update sync scripts X-Git-Tag: upstream/0.0.1642~1498 X-Git-Url: https://git.djapps.eu/?a=commitdiff_plain;h=16244362ed1177f87fac2e3c3e509fd2ef80e295;p=pkg%2Fggml%2Fsources%2Fggml scripts : update sync scripts --- diff --git a/scripts/sync-llama.sh b/scripts/sync-llama.sh index e5d8c4d3..85c45baa 100755 --- a/scripts/sync-llama.sh +++ b/scripts/sync-llama.sh @@ -1,6 +1,8 @@ #!/bin/bash -cp -rpv ../llama.cpp/ggml.c src/ggml.c -cp -rpv ../llama.cpp/ggml-cuda.cu src/ggml-cuda.cu -cp -rpv ../llama.cpp/ggml-cuda.h src/ggml-cuda.h -cp -rpv ../llama.cpp/ggml.h include/ggml/ggml.h +cp -rpv ../llama.cpp/ggml.c src/ggml.c +cp -rpv ../llama.cpp/ggml-cuda.h src/ggml-cuda.h +cp -rpv ../llama.cpp/ggml-cuda.cu src/ggml-cuda.cu +cp -rpv ../llama.cpp/ggml-opencl.h src/ggml-opencl.h +cp -rpv ../llama.cpp/ggml-opencl.c src/ggml-opencl.c +cp -rpv ../llama.cpp/ggml.h include/ggml/ggml.h diff --git a/scripts/sync-whisper.sh b/scripts/sync-whisper.sh index 66858761..1878c9e6 100755 --- a/scripts/sync-whisper.sh +++ b/scripts/sync-whisper.sh @@ -1,8 +1,10 @@ #!/bin/bash cp -rpv ../whisper.cpp/ggml.c src/ggml.c -cp -rpv ../whisper.cpp/ggml-cuda.cu src/ggml-cuda.cu cp -rpv ../whisper.cpp/ggml-cuda.h src/ggml-cuda.h +cp -rpv ../whisper.cpp/ggml-cuda.cu src/ggml-cuda.cu +cp -rpv ../whisper.cpp/ggml-opencl.h src/ggml-opencl.h +cp -rpv ../whisper.cpp/ggml-opencl.c src/ggml-opencl.c cp -rpv ../whisper.cpp/ggml.h include/ggml/ggml.h cp -rpv ../whisper.cpp/examples/common-ggml.h examples/common-ggml.h cp -rpv ../whisper.cpp/examples/common-ggml.cpp examples/common-ggml.cpp