File size: 1,319 Bytes
4c8c0f5 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | #!/bin/bash
# FlowCache PhysicsIQ sampling script
# Usage: bash flowcache_physicsiq.sh [yaml_config_path]
# Default config: yaml_config/sample/flowcache_physicsiq.yaml
export DEVICES="0,1,2,3,4"
export XDG_CACHE_HOME="/path/to/tmp"
export PAD_HQ=1
export PAD_DURATION=1
export PYTORCH_CUDA_ALLOC_CONF=expandable_segments:True
export OFFLOAD_T5_CACHE=true
export OFFLOAD_VAE_CACHE=true
export TORCH_CUDA_ARCH_LIST="8.9;9.0"
MAGI_ROOT=$(git rev-parse --show-toplevel)
export PYTHONPATH="$MAGI_ROOT:$PYTHONPATH"
export MAGI_ROOT="$MAGI_ROOT"
# YAML config file path (can be overridden via command line argument)
YAML_CONFIG="${1:-yaml_config/sample/flowcache_physicsiq.yaml}"
if [ ! -f "$YAML_CONFIG" ]; then
echo "โ YAML config file not found: $YAML_CONFIG"
exit 1
fi
echo "๐ Using YAML config: $YAML_CONFIG"
# Create log directory
LOG_DIR="./logs"
mkdir -p "$LOG_DIR"
LOG_FILE="$LOG_DIR/flowcache_physicsiq_$(date +%Y%m%d_%H%M%S).log"
exec > >(tee -a "$LOG_FILE") 2>&1
echo "๐ Starting multi-GPU benchmark sampling"
echo "๐ฎ GPUs: $DEVICES"
# Run sampling
python sample_video.py "$YAML_CONFIG"
if [ $? -eq 0 ]; then
echo "โ
Sampling completed successfully."
else
echo "โ Sampling failed. Check log: $LOG_FILE"
exit 1
fi
echo "---"
echo "๐ All sampling tasks completed."
|