Skip to content

Commit c5769b5

Browse files
committed
cont : another try
1 parent 4a11c34 commit c5769b5

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

.github/workflows/build.yml

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -916,10 +916,10 @@ jobs:
916916
shell: cmd
917917
run: |
918918
call "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
919-
cmake -S . -B build -G "Ninja Multi-Config" `
920-
-DLLAMA_BUILD_SERVER=ON `
921-
-DGGML_NATIVE=OFF `
922-
-DGGML_CUDA=ON `
919+
cmake -S . -B build -G "Ninja Multi-Config" ^
920+
-DLLAMA_BUILD_SERVER=ON ^
921+
-DGGML_NATIVE=OFF ^
922+
-DGGML_CUDA=ON ^
923923
-DGGML_RPC=ON
924924
set /A NINJA_JOBS=%NUMBER_OF_PROCESSORS%-1
925925
cmake --build build --config Release -j %NINJA_JOBS% -t ggml
@@ -1073,11 +1073,11 @@ jobs:
10731073
run: |
10741074
$env:HIP_PATH=$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)
10751075
$env:CMAKE_PREFIX_PATH="${env:HIP_PATH}"
1076-
cmake -G "Unix Makefiles" -B build -S . `
1077-
-DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" `
1078-
-DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" `
1079-
-DCMAKE_BUILD_TYPE=Release `
1080-
-DGGML_HIP=ON `
1076+
cmake -G "Unix Makefiles" -B build -S . ^
1077+
-DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" ^
1078+
-DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" ^
1079+
-DCMAKE_BUILD_TYPE=Release ^
1080+
-DGGML_HIP=ON ^
10811081
-DGGML_RPC=ON
10821082
cmake --build build -j ${env:NUMBER_OF_PROCESSORS}
10831083
@@ -1116,12 +1116,12 @@ jobs:
11161116
run: |
11171117
$env:HIP_PATH=$(Resolve-Path 'C:\Program Files\AMD\ROCm\*\bin\clang.exe' | split-path | split-path)
11181118
$env:CMAKE_PREFIX_PATH="${env:HIP_PATH}"
1119-
cmake -G "Unix Makefiles" -B build -S . `
1120-
-DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" `
1121-
-DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" `
1122-
-DCMAKE_BUILD_TYPE=Release `
1123-
-DAMDGPU_TARGETS=${{ matrix.gpu_target }} `
1124-
-DGGML_HIP=ON `
1119+
cmake -G "Unix Makefiles" -B build -S . ^
1120+
-DCMAKE_C_COMPILER="${env:HIP_PATH}\bin\clang.exe" ^
1121+
-DCMAKE_CXX_COMPILER="${env:HIP_PATH}\bin\clang++.exe" ^
1122+
-DCMAKE_BUILD_TYPE=Release ^
1123+
-DAMDGPU_TARGETS=${{ matrix.gpu_target }} ^
1124+
-DGGML_HIP=ON ^
11251125
-DGGML_RPC=ON
11261126
cmake --build build -j ${env:NUMBER_OF_PROCESSORS}
11271127
md "build\bin\rocblas\library\"

0 commit comments

Comments
 (0)