From dd6fec8391578b3129464f1fd950570fc4028064 Mon Sep 17 00:00:00 2001 From: Niels Geens Date: Fri, 28 Mar 2025 15:31:00 +0100 Subject: [PATCH] Switched to larger gpu --- scripts/deploy.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/scripts/deploy.sh b/scripts/deploy.sh index d5513d1..0dcb65d 100755 --- a/scripts/deploy.sh +++ b/scripts/deploy.sh @@ -10,10 +10,9 @@ export MSYS_NO_PATHCONV=1 # These can be overridden by environment variables or .env file # Pod configuration -GPU_TYPE=${GPU_TYPE:-"NVIDIA GeForce RTX 3090"} +GPU_TYPE=${GPU_TYPE:-"NVIDIA RTX 6000 Ada Generation"} GPU_COUNT=${GPU_COUNT:-1} CONTAINER_DISK_SIZE=${CONTAINER_DISK_SIZE:-100} # GB -MEMORY=${MEMORY:-20} # GB CPU_COUNT=${CPU_COUNT:-1} # vCPUs POD_NAME=${POD_NAME:-"sia-agent"} VOLUME_SIZE=${VOLUME_SIZE:-200} # GB @@ -38,7 +37,6 @@ output=$(runpodctl create pod \ --containerDiskSize $CONTAINER_DISK_SIZE \ --volumeSize $VOLUME_SIZE \ --volumePath "$VOLUME_PATH" \ - --mem $MEMORY \ --vcpu $CPU_COUNT \ --ports "8080/http,8888/http" \ --env "SIA_REPO_URL=$SIA_REPO_URL" \ @@ -86,4 +84,4 @@ while [ true ]; do echo "Pod is now running!" break fi -done \ No newline at end of file +done