Replies: 1 comment 1 reply
-
I have the same issue but at least in my case it's just a graphical bug, the compilation actually includes rocwmma. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hello guys!
Trying to compile llama.cpp (the latest build) with RocWMMA.
Ubuntu 24.04 LTS (all updates installed).
Compilation:
Result:
-- Looking for C++ include rocwmma/rocwmma.hpp
-- Looking for C++ include rocwmma/rocwmma.hpp - not found
I tried:
-DCMAKE_CXX_FLAGS="-I/opt/rocm-6.4.0/include/"
-DCMAKE_CXX_FLAGS="-I/opt/rocm-6.4.0/include/rocwmma/"
with ending slashes and without them.
found this in code:
ggml/src/ggml-hip/CMakeLists.txt:42
if (GGML_HIP_ROCWMMA_FATTN)
CHECK_INCLUDE_FILE_CXX("rocwmma/rocwmma.hpp" FOUND_ROCWMMA)
if (NOT ${FOUND_ROCWMMA})
message(FATAL_ERROR "rocwmma has not been found")
endif()
endif()
updated code, got:
-- Looking for C++ include /opt/rocm-6.4.0/include/rocwmma/rocwmma.hpp
-- Looking for C++ include /opt/rocm-6.4.0/include/rocwmma/rocwmma.hpp - not found
Also I tried to compile using sudo,
please help.
Beta Was this translation helpful? Give feedback.
All reactions