1
0

sync-ggml.sh 788 B

1234567891011121314151617181920
  1. #!/usr/bin/env bash
  2. cp -rpv ../ggml/CMakeLists.txt ./ggml/CMakeLists.txt
  3. cp -rpv ../ggml/src/CMakeLists.txt ./ggml/src/CMakeLists.txt
  4. cp -rpv ../ggml/cmake/* ./ggml/cmake/
  5. cp -rpv ../ggml/src/ggml-cpu/cmake/* ./ggml/src/ggml-cpu/cmake/
  6. cp -rpv ../ggml/src/ggml* ./ggml/src/
  7. cp -rpv ../ggml/include/ggml*.h ./ggml/include/
  8. cp -rpv ../ggml/include/gguf*.h ./ggml/include/
  9. cp -rpv ../ggml/tests/test-opt.cpp ./tests/test-opt.cpp
  10. cp -rpv ../ggml/tests/test-quantize-fns.cpp ./tests/test-quantize-fns.cpp
  11. cp -rpv ../ggml/tests/test-quantize-perf.cpp ./tests/test-quantize-perf.cpp
  12. cp -rpv ../ggml/tests/test-backend-ops.cpp ./tests/test-backend-ops.cpp
  13. cp -rpv ../LICENSE ./LICENSE
  14. cp -rpv ../ggml/scripts/gen-authors.sh ./scripts/gen-authors.sh