This commit is contained in:
Dobromir Popov
2025-09-05 13:22:21 +03:00
parent 8a189d271f
commit c5be4c88c1
21 changed files with 4897 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
@echo off
setlocal
where hipcc >nul 2>nul
if errorlevel 1 (
echo ERROR: hipcc not found. Please install ROCm/HIP toolchain.
exit /b 1
)
if not exist build mkdir build
cd build
cmake -G "Ninja" -DHIP_PLATFORM=amd -DCMAKE_BUILD_TYPE=Release ..
if errorlevel 1 exit /b 1
cmake --build . -j
if errorlevel 1 exit /b 1
cd ..
echo Build done. Executable should be at build\rinhash-hip-miner.exe