Here is my experience so far trying to use AMDGPU.jl on Fedora 41 with an RX 7600 GPU.
Installed RPM Packages
rocm-comgr-18-10.rocm6.2.1.fc41.x86_64
hsakmt-1.0.6-46.rocm6.2.1.fc41.x86_64
rocm-runtime-6.2.1-2.fc41.x86_64
rocminfo-6.2.1-1.fc41.x86_64
hsakmt-devel-1.0.6-46.rocm6.2.1.fc41.x86_64
rocm-runtime-devel-6.2.1-2.fc41.x86_64
rocm-comgr-devel-18-10.rocm6.2.1.fc41.x86_64
rocm-device-libs-18-10.rocm6.2.1.fc41.x86_64
hipcc-18-10.rocm6.2.1.fc41.x86_64
rocm-hip-6.2.1-5.fc41.x86_64
rocm-opencl-6.2.1-5.fc41.x86_64
rocm-smi-6.2.1-1.fc41.x86_64
rocm-core-6.2.0-1.fc41.x86_64
rocm-core-devel-6.2.0-1.fc41.x86_64
rocm-hip-devel-6.2.1-5.fc41.x86_64
rocm-smi-devel-6.2.1-1.fc41.x86_64
rocm-opencl-devel-6.2.1-5.fc41.x86_64
rocm-llvm-devel-18-10.rocm6.2.1.fc41.x86_64
rocm-compilersupport-macros-18-10.rocm6.2.1.fc41.x86_64
rocm-clinfo-6.2.1-5.fc41.x86_64
rocm-cmake-6.2.0-1.fc41.noarch
rocm-rpm-macros-6.2-1.fc41.x86_64
rocm-rpm-macros-modules-6.2-1.fc41.x86_64
hipcc-18-10.rocm6.2.1.fc41.x86_64
hipblas-gfx942-6.2.0-1.fc41.x86_64
hipblas-gfx90a-6.2.0-1.fc41.x86_64
hipblas-gfx1103-6.2.0-1.fc41.x86_64
hipblas-gfx1100-6.2.0-1.fc41.x86_64
hipblas-6.2.0-1.fc41.x86_64
hipblas-devel-6.2.0-1.fc41.x86_64
hipfft-6.2.1-1.fc41.x86_64
hipfft-devel-6.2.1-1.fc41.x86_64
hiprand-gfx942-6.2.0-1.fc41.x86_64
hiprand-gfx90a-6.2.0-1.fc41.x86_64
hiprand-gfx1103-6.2.0-1.fc41.x86_64
hiprand-gfx1100-6.2.0-1.fc41.x86_64
hiprand-6.2.0-1.fc41.x86_64
hiprand-devel-6.2.0-1.fc41.x86_64
hipsolver-6.2.0-1.fc41.x86_64
hipsolver-gfx1100-6.2.0-1.fc41.x86_64
hipsolver-gfx1103-6.2.0-1.fc41.x86_64
hipsolver-gfx90a-6.2.0-1.fc41.x86_64
hipsolver-gfx942-6.2.0-1.fc41.x86_64
hipsolver-devel-6.2.0-1.fc41.x86_64
hipsparse-gfx942-6.2.0-1.fc41.x86_64
hipsparse-gfx90a-6.2.0-1.fc41.x86_64
hipsparse-gfx1103-6.2.0-1.fc41.x86_64
hipsparse-gfx1100-6.2.0-1.fc41.x86_64
hipsparse-6.2.0-1.fc41.x86_64
hipsparse-devel-6.2.0-1.fc41.x86_64
Configuration Details
Fedora places some files in /usr/bin
, /usr/include
, and /usr/lib64
, but places architecture-specific files in /usr/lib64/rocm/gfxXXX
. In my specific case, the folder is gfx1100
, although rocminfo
reports gfx1102
.
Following @pxl-th’s suggestion, I created symlinks to:
/usr/lib64/libamdhip64.so
/usr/lib64/libhsa-runtime64.so
These were placed in /usr/lib64/rocm/gfx1100
, which allowed AMDGPU.jl to start working.
Additionally, I set the following environment variables:
export HIP_VISIBLE_DEVICES=0
And I run Julia with:
ROCM_PATH=/usr/lib64/rocm/gfx1100 julia
Testing Results
I am using Julia 1.11.4 and AMDGPU.jl freshly installed from scratch. Running the test suite with:
pkg> test AMDGPU
Gives the following result:
ERROR: LoadError: Some tests did not pass: 9371 passed, 116 failed, 1046 errored, 16 broken.
in expression starting at /home/mota/.julia/packages/AMDGPU/VTHhJ/test/runtests.jl:115
ERROR: Package AMDGPU errored during testing
Most of the errors point to failing to locate the file TensileLibrary.dat
. While this file does not exist, there are numerous TensileLibrary*
files located in:
/usr/lib64/rocm/gfx1100/lib/rocblas/library/
Request for Help
I’m unsure if the missing TensileLibrary.dat
file is expected or if I need additional steps to configure AMDGPU.jl on Fedora 41. Has anyone else encountered similar issues? Any insights or suggestions would be greatly appreciated!