feat: 适配 RTX 3090 (24GB) 环境优化

硬件迁移:从 RTX 5090 (32GB) 迁移到 RTX 3090 (24GB)

主要改动:
- 所有启动脚本和配置文件中的 /home/xsl/ 路径替换为 /home/ubuntu/
- 适配新的 24GB VRAM 环境
This commit is contained in:
xsl
2026-07-18 19:00:15 +08:00
parent 9b7324cd26
commit 6f34e8876c
21 changed files with 92 additions and 92 deletions
+2 -2
View File
@@ -1,8 +1,8 @@
#!/bin/bash
# 重新同步 conda 环境(上次被 sed 损坏,这次纯净拷贝)
set -u
CONDA_ENVS="/home/xsl/miniconda3/envs"
LOGDIR="/home/xsl/change_hair/project/logs"
CONDA_ENVS="/home/ubuntu/miniconda3/envs"
LOGDIR="/home/ubuntu/change_hair/project/logs"
mkdir -p "$CONDA_ENVS" "$LOGDIR"
echo "conda 环境重传开始: $(date '+%H:%M:%S')" | tee -a "$LOGDIR/sync_conda.log"