Cccccz's picture
Add files using upload-large-folder tool
4c8c0f5 verified
Raw
History Blame Contribute Delete
1.32 kB
#!/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."