mirror of
https://github.com/ggerganov/llama.cpp.git
synced 2024-11-11 13:30:35 +00:00
fe680e3d10
* sync : ggml (part 1)
* sync : ggml (part 2, CUDA)
* sync : ggml (part 3, Metal)
* ggml : build fixes
ggml-ci
* cuda : restore lost changes
* cuda : restore lost changes (StableLM rope)
* cmake : enable separable compilation for CUDA
ggml-ci
* ggml-cuda : remove device side dequantize
* Revert "cmake : enable separable compilation for CUDA"
This reverts commit 09e35d04b1
.
* cuda : remove assert for rope
* tests : add test-backend-ops
* ggml : fix bug in ggml_concat
* ggml : restore `ggml_get_n_tasks()` logic in `ggml_graph_plan()`
* ci : try to fix macOS
* ggml-backend : remove backend self-registration
* ci : disable Metal for macOS cmake build
ggml-ci
* metal : fix "supports family" call
* metal : fix assert
* metal : print resource path
ggml-ci
---------
Co-authored-by: slaren <slarengh@gmail.com>
26 lines
1.3 KiB
Bash
Executable File
26 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
cp -rpv ../ggml/src/ggml.c ./ggml.c
|
|
cp -rpv ../ggml/src/ggml-alloc.c ./ggml-alloc.c
|
|
cp -rpv ../ggml/src/ggml-backend-impl.h ./ggml-backend-impl.h
|
|
cp -rpv ../ggml/src/ggml-backend.c ./ggml-backend.c
|
|
cp -rpv ../ggml/src/ggml-cuda.cu ./ggml-cuda.cu
|
|
cp -rpv ../ggml/src/ggml-cuda.h ./ggml-cuda.h
|
|
cp -rpv ../ggml/src/ggml-impl.h ./ggml-impl.h
|
|
cp -rpv ../ggml/src/ggml-metal.h ./ggml-metal.h
|
|
cp -rpv ../ggml/src/ggml-metal.m ./ggml-metal.m
|
|
cp -rpv ../ggml/src/ggml-metal.metal ./ggml-metal.metal
|
|
cp -rpv ../ggml/src/ggml-mpi.h ./ggml-mpi.h
|
|
cp -rpv ../ggml/src/ggml-mpi.c ./ggml-mpi.c
|
|
cp -rpv ../ggml/src/ggml-opencl.cpp ./ggml-opencl.cpp
|
|
cp -rpv ../ggml/src/ggml-opencl.h ./ggml-opencl.h
|
|
cp -rpv ../ggml/src/ggml-quants.c ./ggml-quants.c
|
|
cp -rpv ../ggml/src/ggml-quants.h ./ggml-quants.h
|
|
cp -rpv ../ggml/include/ggml/ggml.h ./ggml.h
|
|
cp -rpv ../ggml/include/ggml/ggml-alloc.h ./ggml-alloc.h
|
|
cp -rpv ../ggml/include/ggml/ggml-backend.h ./ggml-backend.h
|
|
|
|
cp -rpv ../ggml/tests/test-opt.cpp ./tests/test-opt.cpp
|
|
cp -rpv ../ggml/tests/test-grad0.cpp ./tests/test-grad0.cpp
|
|
cp -rpv ../ggml/tests/test-backend-ops.cpp ./tests/test-backend-ops.cpp
|