This repository has been archived on 2026-08-19. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
ROCm-Research-Archive/_TestScripts/Scripts and Tests/load_models.sh
T
2026-08-20 00:45:43 +02:00

17 lines
376 B
Bash

#!/bin/bash
echo "=== LOADING Z-IMAGE-TURBO ==="
START=$(date +%s)
curl -v -X POST http://localhost:8080/models/load \
-H "Content-Type: application/json" \
-d '{
"model_name": "z_image_turbo-Q5_K_S.gguf",
"model_type": "diffusion",
"llm": "Qwen_3_4b-Q8_0.gguf",
"vae": "ae.safetensors"
}' 2>&1
END=$(date +%s)
echo ""
echo "Load took $((END-START))s"