Skip to content

Commit dd49f08

Browse files
committedNov 13, 2024
fixes
1 parent d5dd7ed commit dd49f08

File tree

3 files changed

+20
-9
lines changed

3 files changed

+20
-9
lines changed
 

‎Makefile

+15-6
Original file line numberDiff line numberDiff line change
@@ -559,19 +559,19 @@ ifdef GGML_OPENBLAS64
559559
MK_CPPFLAGS += -DGGML_USE_BLAS $(shell pkg-config --cflags-only-I openblas64)
560560
MK_CFLAGS += $(shell pkg-config --cflags-only-other openblas64)
561561
MK_LDFLAGS += $(shell pkg-config --libs openblas64)
562-
OBJ_GGML += src/ggml-blas/ggml-blas.o
562+
OBJ_GGML += ggml/src/ggml-blas/ggml-blas.o
563563
endif # GGML_OPENBLAS64
564564

565565
ifdef GGML_BLIS
566566
MK_CPPFLAGS += -DGGML_USE_BLAS -DGGML_BLAS_USE_BLIS -I/usr/local/include/blis -I/usr/include/blis
567567
MK_LDFLAGS += -lblis -L/usr/local/lib
568-
OBJ_GGML += src/ggml-blas/ggml-blas.o
568+
OBJ_GGML += ggml/src/ggml-blas/ggml-blas.o
569569
endif # GGML_BLIS
570570

571571
ifdef GGML_NVPL
572572
MK_CPPFLAGS += -DGGML_USE_BLAS -DGGML_BLAS_USE_NVPL -DNVPL_ILP64 -I/usr/local/include/nvpl_blas -I/usr/include/nvpl_blas
573573
MK_LDFLAGS += -L/usr/local/lib -lnvpl_blas_core -lnvpl_blas_ilp64_gomp
574-
OBJ_GGML += src/ggml-blas/ggml-blas.o
574+
OBJ_GGML += ggml/src/ggml-blas/ggml-blas.o
575575
endif # GGML_NVPL
576576

577577
ifndef GGML_NO_LLAMAFILE
@@ -1267,13 +1267,22 @@ clean:
12671267
rm -rvf ggml/*.dll
12681268
rm -rvf ggml/*.so
12691269
rm -rvf ggml/src/*.o
1270+
rm -rvf common/build-info.cpp
12701271
rm -rvf ggml/src/ggml-cpu/*.o
12711272
rm -rvf ggml/src/ggml-cpu/llamafile/*.o
1272-
rm -rvf common/build-info.cpp
1273-
rm -vrf ggml/src/ggml-metal/ggml-metal-embed.metal
1273+
rm -vrf ggml/src/ggml-amx/*.o
1274+
rm -vrf ggml/src/ggml-blas/*.o
1275+
rm -vrf ggml/src/ggml-cann/*.o
1276+
rm -vrf ggml/src/ggml-cpu/*.o
12741277
rm -vrf ggml/src/ggml-cuda/*.o
12751278
rm -vrf ggml/src/ggml-cuda/template-instances/*.o
1276-
rm -vrf ggml/src/ggml-amx/*.o
1279+
rm -vrf ggml/src/ggml-hip/*.o
1280+
rm -vrf ggml/src/ggml-kompute/*.o
1281+
rm -vrf ggml/src/ggml-metal/*.o
1282+
rm -vrf ggml/src/ggml-metal/ggml-metal-embed.metal
1283+
rm -vrf ggml/src/ggml-rpc/*.o
1284+
rm -vrf ggml/src/ggml-sycl/*.o
1285+
rm -vrf ggml/src/ggml-vulkan/*.o
12771286
rm -rvf $(BUILD_TARGETS)
12781287
rm -rvf $(TEST_TARGETS)
12791288
rm -f vulkan-shaders-gen ggml/src/ggml-vulkan-shaders.hpp ggml/src/ggml-vulkan-shaders.cpp

‎examples/llama-bench/llama-bench.cpp

+4-3
Original file line numberDiff line numberDiff line change
@@ -872,7 +872,7 @@ struct test {
872872
static const std::vector<std::string> & get_fields() {
873873
static const std::vector<std::string> fields = {
874874
"build_commit", "build_number",
875-
"cpu_info", "gpu_info",
875+
"cpu_info", "gpu_info", "backends",
876876
"model_filename", "model_type", "model_size", "model_n_params",
877877
"n_batch", "n_ubatch",
878878
"n_threads", "cpu_mask", "cpu_strict", "poll",
@@ -927,7 +927,7 @@ struct test {
927927
}
928928
std::vector<std::string> values = {
929929
build_commit, std::to_string(build_number),
930-
cpu_info, gpu_info,
930+
cpu_info, gpu_info, get_backend(),
931931
model_filename, model_type, std::to_string(model_size), std::to_string(model_n_params),
932932
std::to_string(n_batch), std::to_string(n_ubatch),
933933
std::to_string(n_threads), cpu_mask, std::to_string(cpu_strict), std::to_string(poll),
@@ -1158,7 +1158,8 @@ struct markdown_printer : public printer {
11581158
fields.emplace_back("size");
11591159
fields.emplace_back("params");
11601160
fields.emplace_back("backend");
1161-
bool is_cpu_backend = test::get_backend() == "CPU" || test::get_backend() == "BLAS";
1161+
bool is_cpu_backend = test::get_backend().find("CPU") != std::string::npos ||
1162+
test::get_backend().find("BLAS") != std::string::npos;
11621163
if (!is_cpu_backend) {
11631164
fields.emplace_back("n_gpu_layers");
11641165
}

‎ggml/CMakeLists.txt

+1
Original file line numberDiff line numberDiff line change
@@ -244,6 +244,7 @@ endif()
244244

245245
# FIXME: this should be done in the backend cmake files
246246
if (GGML_METAL)
247+
# FIXME: does this need to be installed with GGML_METAL_EMBED_LIBRARY?
247248
install(
248249
FILES src/ggml-metal/ggml-metal.metal
249250
PERMISSIONS

0 commit comments

Comments
 (0)