ai-suite-rocm-local/xtts-rocm/run.sh

18 lines
313 B
Bash
Raw Permalink Normal View History

2024-06-30 22:06:23 +02:00
#!/bin/bash
source ../utils.sh
python_exec=venv/bin/python3.10
# Main function
main() {
# Create virtual environment
use_venv
# Prints ROCM info with available GPUs
rocm-smi
# Start XTTS
2024-08-19 18:35:27 +02:00
cd webui/
TORCH_BLAS_PREFER_HIPBLASLT=0 ../$python_exec app.py --host 0.0.0.0 -v v2.0.3
2024-06-30 22:06:23 +02:00
}
main