Spaces:
Runtime error
Runtime error
File size: 265 Bytes
a8c39f5 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
@echo off
setlocal
title Applio
if not exist env (
echo Please run 'run-install.bat' first to set up the environment.
pause
exit /b 1
)
set HIP_VISIBLE_DEVICES="0"
set ZLUDA_COMGR_LOG_LEVEL=1
zluda\zluda.exe -- env\python.exe app.py --open
echo.
pause |