sync-whisper.sh 1.3 KB

12345678910111213141516171819
  1. #!/bin/bash
  2. cp -rpv ../whisper.cpp/ggml.c src/ggml.c
  3. cp -rpv ../whisper.cpp/ggml-cuda.h src/ggml-cuda.h
  4. cp -rpv ../whisper.cpp/ggml-cuda.cu src/ggml-cuda.cu
  5. cp -rpv ../whisper.cpp/ggml-opencl.h src/ggml-opencl.h
  6. cp -rpv ../whisper.cpp/ggml-opencl.cpp src/ggml-opencl.cpp
  7. cp -rpv ../whisper.cpp/ggml-metal.h src/ggml-metal.h
  8. cp -rpv ../whisper.cpp/ggml-metal.m src/ggml-metal.m
  9. cp -rpv ../whisper.cpp/ggml-metal.metal src/ggml-metal.metal
  10. cp -rpv ../whisper.cpp/ggml.h include/ggml/ggml.h
  11. cp -rpv ../whisper.cpp/examples/common.h examples/common.h
  12. cp -rpv ../whisper.cpp/examples/common.cpp examples/common.cpp
  13. cp -rpv ../whisper.cpp/examples/common-ggml.h examples/common-ggml.h
  14. cp -rpv ../whisper.cpp/examples/common-ggml.cpp examples/common-ggml.cpp
  15. cp -rpv ../whisper.cpp/whisper.h examples/whisper/whisper.h
  16. cp -rpv ../whisper.cpp/whisper.cpp examples/whisper/whisper.cpp
  17. cp -rpv ../whisper.cpp/examples/main/main.cpp examples/whisper/main.cpp
  18. cp -rpv ../whisper.cpp/examples/quantize/quantize.cpp examples/whisper/quantize.cpp