mirror of
https://github.com/ggerganov/whisper.cpp.git
synced 2024-11-07 16:44:13 +01:00
e30c679928
* scripts : update sync [no ci] * files : reorganize [no ci] * sync : llama.cpp * cmake : link math library * cmake : build normal ggml library * files : move headers to include * objc : fix path to ggml-metal.h * ci : fix WHISPER_CUDA -> GGML_CUDA * scripts : sync LICENSE [no ci]
10 lines
465 B
Bash
Executable File
10 lines
465 B
Bash
Executable File
#!/bin/bash
|
|
|
|
cp -rpv ../llama.cpp/include/llama.h ./examples/talk-llama/llama.h
|
|
|
|
cp -rpv ../llama.cpp/src/llama.cpp ./examples/talk-llama/llama.cpp
|
|
cp -rpv ../llama.cpp/src/unicode.h ./examples/talk-llama/unicode.h
|
|
cp -rpv ../llama.cpp/src/unicode.cpp ./examples/talk-llama/unicode.cpp
|
|
cp -rpv ../llama.cpp/src/unicode-data.h ./examples/talk-llama/unicode-data.h
|
|
cp -rpv ../llama.cpp/src/unicode-data.cpp ./examples/talk-llama/unicode-data.cpp
|