chore: fixing previous error of software version

This commit is contained in:
2026-03-12 00:22:24 +01:00
parent 9caad4de4e
commit d748733231
9 changed files with 11 additions and 8 deletions

View File

@@ -1,7 +1,7 @@
ZONE="us-central2-b" ZONE="us-central2-b"
QR_NAME="v4-test-vm" QR_NAME="v4-test-vm"
ACCEL_TYPE="v4-8" ACCEL_TYPE="v4-8"
RUNTIME_VERSION="v2-alpha-tpuv4" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="true" IS_SPOT="true"
RUN_ID="phantom_v4_test_1" RUN_ID="phantom_v4_test_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -1,7 +1,7 @@
ZONE="us-central2-b" ZONE="us-central2-b"
QR_NAME="v4-32-us-ondemand" QR_NAME="v4-32-us-ondemand"
ACCEL_TYPE="v4-32" ACCEL_TYPE="v4-32"
RUNTIME_VERSION="v2-alpha-tpuv4" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="false" IS_SPOT="false"
RUN_ID="phantom_v4_od_1" RUN_ID="phantom_v4_od_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -1,7 +1,7 @@
ZONE="us-central2-b" ZONE="us-central2-b"
QR_NAME="v4-32-us-spot" QR_NAME="v4-32-us-spot"
ACCEL_TYPE="v4-32" ACCEL_TYPE="v4-32"
RUNTIME_VERSION="v2-alpha-tpuv4" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="true" IS_SPOT="true"
RUN_ID="phantom_v4_spot_1" RUN_ID="phantom_v4_spot_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -1,7 +1,7 @@
ZONE="europe-west4-b" ZONE="europe-west4-b"
QR_NAME="v5e-64-eu-spot" QR_NAME="v5e-64-eu-spot"
ACCEL_TYPE="v5litepod-64" ACCEL_TYPE="v5litepod-64"
RUNTIME_VERSION="v2-alpha-tpuv5-lite" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="true" IS_SPOT="true"
RUN_ID="phantom_v5e_eu_1" RUN_ID="phantom_v5e_eu_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -1,7 +1,7 @@
ZONE="us-central1-a" ZONE="us-central1-a"
QR_NAME="v5e-64-us-spot" QR_NAME="v5e-64-us-spot"
ACCEL_TYPE="v5litepod-64" ACCEL_TYPE="v5litepod-64"
RUNTIME_VERSION="v2-alpha-tpuv5-lite" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="true" IS_SPOT="true"
RUN_ID="phantom_v5e_us_1" RUN_ID="phantom_v5e_us_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -1,7 +1,7 @@
ZONE="europe-west4-a" ZONE="europe-west4-a"
QR_NAME="v6e-64-eu-spot" QR_NAME="v6e-64-eu-spot"
ACCEL_TYPE="v6e-64" ACCEL_TYPE="v6e-64"
RUNTIME_VERSION="v2-alpha-tpuv6e" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="true" IS_SPOT="true"
RUN_ID="phantom_v6e_eu_1" RUN_ID="phantom_v6e_eu_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -1,7 +1,7 @@
ZONE="us-east1-d" ZONE="us-east1-d"
QR_NAME="v6e-64-us-spot" QR_NAME="v6e-64-us-spot"
ACCEL_TYPE="v6e-64" ACCEL_TYPE="v6e-64"
RUNTIME_VERSION="v2-alpha-tpuv6e" RUNTIME_VERSION="tpu-ubuntu2204-base"
IS_SPOT="true" IS_SPOT="true"
RUN_ID="phantom_v6e_us_1" RUN_ID="phantom_v6e_us_1"
HF_REPO="velocitatem/capstone" HF_REPO="velocitatem/capstone"

View File

@@ -62,6 +62,9 @@ cd /app/model
if [ -f "requirements.txt" ]; then if [ -f "requirements.txt" ]; then
pip install -r requirements.txt pip install -r requirements.txt
fi fi
if [ -f "sim/requirements.txt" ]; then
pip install -r sim/requirements.txt
fi
# 5. Restore state from Hugging Face Buckets # 5. Restore state from Hugging Face Buckets
echo "Restoring state from hf://buckets/$HF_REPO..." echo "Restoring state from hf://buckets/$HF_REPO..."

View File

@@ -95,7 +95,7 @@ while true; do
fi fi
# Determine runtime version # Determine runtime version
RT_VERSION=${RUNTIME_VERSION:-"v2-alpha-tpuv4"} RT_VERSION=${RUNTIME_VERSION:-"tpu-ubuntu2204-base"}
gcloud compute tpus queued-resources create $QR_NAME \ gcloud compute tpus queued-resources create $QR_NAME \
--project=$PROJECT_ID \ --project=$PROJECT_ID \