You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/hipBLAS_on_Windows.md
+12-9Lines changed: 12 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -26,12 +26,12 @@ Fortunately, `AMD` provides complete help documentation, you can use the help do
26
26
27
27
Then we must set `ROCM` as environment variables before running cmake.
28
28
29
-
Usually if you install according to the official tutorial and do not modify the ROCM path, then there is a high probability that it is here `C:\Program Files\AMD\ROCm\5.5\bin`
29
+
Usually if you install according to the official tutorial and do not modify the ROCM path, then there is a high probability that it is here `C:\Program Files\AMD\ROCm\7.1.1\bin`
30
30
31
31
This is what I use to set the clang:
32
32
```Commandline
33
-
set CC=C:\Program Files\AMD\ROCm\5.5\bin\clang.exe
34
-
set CXX=C:\Program Files\AMD\ROCm\5.5\bin\clang++.exe
33
+
set CC=C:\Program Files\AMD\ROCm\7.1.1\bin\clang.exe
34
+
set CXX=C:\Program Files\AMD\ROCm\7.1.1\bin\clang++.exe
35
35
```
36
36
37
37
## Ninja
@@ -46,7 +46,7 @@ set ninja=C:\Program Files\ninja\ninja.exe
46
46
## Building stable-diffusion.cpp
47
47
48
48
The thing different from the regular CPU build is `-DSD_HIPBLAS=ON` ,
>**Notice**: check the `clang` and `clang++` information:
52
52
```Commandline
@@ -59,26 +59,29 @@ If you see like this, we can continue:
59
59
clang version 17.0.0 (git@github.amd.com:Compute-Mirrors/llvm-project e3201662d21c48894f2156d302276eb1cf47c7be)
60
60
Target: x86_64-pc-windows-msvc
61
61
Thread model: posix
62
-
InstalledDir: C:\Program Files\AMD\ROCm\5.5\bin
62
+
InstalledDir: C:\Program Files\AMD\ROCm\7.1.1\bin
63
63
```
64
64
65
65
```
66
66
clang version 17.0.0 (git@github.amd.com:Compute-Mirrors/llvm-project e3201662d21c48894f2156d302276eb1cf47c7be)
67
67
Target: x86_64-pc-windows-msvc
68
68
Thread model: posix
69
-
InstalledDir: C:\Program Files\AMD\ROCm\5.5\bin
69
+
InstalledDir: C:\Program Files\AMD\ROCm\7.1.1\bin
70
70
```
71
71
72
-
>**Notice** that the `gfx1100` is the GPU architecture of my GPU, you can change it to your GPU architecture. Click here to see your architecture [LLVM Target](https://rocm.docs.amd.com/en/latest/release/windows_support.html#windows-supported-gpus)
72
+
>**Notice** that the GPU targets are now compatible with multiple GPU architectures (ROCm 7.1.1 targets). You can change them to match your GPU architecture. Click here to see your architecture [LLVM Target](https://rocm.docs.amd.com/en/latest/release/windows_support.html#windows-supported-gpus)
73
73
74
-
My GPU is AMD Radeon™ RX 7900 XTX Graphics, so I set it to `gfx1100`.
0 commit comments