Skip to content

Commit 8e8054a

Browse files
committed
Add rocblas to build files
1 parent 1f6294d commit 8e8054a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CMakeLists.txt

+2-1
Original file line numberDiff line numberDiff line change
@@ -359,6 +359,7 @@ if (LLAMA_HIPBLAS)
359359

360360
find_package(hip)
361361
find_package(hipblas)
362+
find_package(rocblas)
362363

363364
if (${hipblas_FOUND} AND ${hip_FOUND})
364365
message(STATUS "HIP and hipBLAS found")
@@ -369,7 +370,7 @@ if (LLAMA_HIPBLAS)
369370
target_compile_definitions(ggml-rocm PRIVATE K_QUANTS_PER_ITERATION=${LLAMA_CUDA_KQUANTS_ITER})
370371
target_compile_definitions(ggml-rocm PRIVATE GGML_CUDA_FORCE_DMMV)
371372
set_source_files_properties(ggml-cuda.cu PROPERTIES LANGUAGE CXX)
372-
target_link_libraries(ggml-rocm PRIVATE hip::device PUBLIC hip::host roc::hipblas)
373+
target_link_libraries(ggml-rocm PRIVATE hip::device PUBLIC hip::host roc::rocblas roc::hipblas)
373374

374375
if (LLAMA_STATIC)
375376
message(FATAL_ERROR "Static linking not supported for HIP/ROCm")

Makefile

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ ifdef LLAMA_HIPBLAS
228228
LLAMA_CUDA_KQUANTS_ITER ?= 2
229229
CFLAGS += -DGGML_USE_HIPBLAS -DGGML_USE_CUBLAS $(shell $(ROCM_PATH)/bin/hipconfig -C)
230230
CXXFLAGS += -DGGML_USE_HIPBLAS -DGGML_USE_CUBLAS $(shell $(ROCM_PATH)/bin/hipconfig -C)
231-
LDFLAGS += -L/opt/rocm/lib -Wl,-rpath=$(ROCM_PATH)/lib -lhipblas -lamdhip64
231+
LDFLAGS += -L/opt/rocm/lib -Wl,-rpath=$(ROCM_PATH)/lib -lhipblas -lamdhip64 -lrocblas
232232
OBJS += ggml-cuda.o
233233
ggml-cuda.o: CXXFLAGS += $(addprefix --offload-arch=,$(GPU_TARGETS))
234234
ggml-cuda.o: CXXFLAGS += -DGGML_CUDA_DMMV_X=$(LLAMA_CUDA_DMMV_X)

0 commit comments

Comments
 (0)