llama: delete unused files (#6523)

This commit is contained in:
Jeffrey Morgan
2024-08-29 17:30:11 -07:00
committed by jmorganca
parent c8a1741d9b
commit 9d8129b8bb
5 changed files with 1 additions and 459 deletions

View File

@@ -120,7 +120,7 @@ $(sed 's/^/ * /' <$src_dir/LICENSE)
EOF
LICENSE_FILES=$(find $dst_dir -type f \( -name "*.c" -o -name "*.h" -o -name "*.cpp" -o -name "*.m" -o -name "*.metal" -o -name "*.cu" -o -name "*.cuh" \))
EXCLUDED_FILES=("sgemm.cpp" "sgemm.h" "sampling_ext.cpp" "sampling_ext.h" "metal.c", "stb_image.h", "json.hpp")
EXCLUDED_FILES=("sgemm.cpp" "sgemm.h" "sampling_ext.cpp" "sampling_ext.h" "stb_image.h" "json.hpp" "llama_darwin.c")
for IN in $LICENSE_FILES; do
for EXCLUDED in "${EXCLUDED_FILES[@]}"; do