Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import json
import logging
import os
import subprocess
import time
import random
Expand All @@ -46,7 +47,9 @@

# Test configuration
REGION = "us-east-1"
CLUSTER_NAME = "riv-rig"
# HyperPod cluster provisioned for the pysdk integ-test account in us-east-1.
# Overridable via env var so a cluster rename does not require a code change.
CLUSTER_NAME = os.environ.get("PYSDK_HYPERPOD_CLUSTER_NAME", "pysdk-hp-integ-tests")
INSTANCE_TYPE = "ml.p5.48xlarge"
NODE_COUNT = 2
MODEL_NAME = "nova-textgeneration-micro"
Expand Down
5 changes: 4 additions & 1 deletion sagemaker-train/tests/integ/train/test_cpt_hyperpod.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@

import json
import logging
import os
import subprocess
import time
import random
Expand All @@ -45,7 +46,9 @@

# Test configuration
REGION = "us-east-1"
CLUSTER_NAME = "riv-rig"
# HyperPod cluster provisioned for the pysdk integ-test account in us-east-1.
# Overridable via env var so a cluster rename does not require a code change.
CLUSTER_NAME = os.environ.get("PYSDK_HYPERPOD_CLUSTER_NAME", "pysdk-hp-integ-tests")
INSTANCE_TYPE = "ml.p5.48xlarge"
NODE_COUNT = 2
MODEL_NAME = "nova-textgeneration-micro"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@

import json
import logging
import os
import time
import random

Expand All @@ -49,7 +50,9 @@
REGION = "us-east-1"
DATA_PREFIX = "test-sft-data-mixing-hyperpod-integ"
NUM_TRAINING_SAMPLES = 300
HYPERPOD_CLUSTER_NAME = "riv-rig"
# HyperPod cluster provisioned for the pysdk integ-test account in us-east-1.
# Overridable via env var so a cluster rename does not require a code change.
HYPERPOD_CLUSTER_NAME = os.environ.get("PYSDK_HYPERPOD_CLUSTER_NAME", "pysdk-hp-integ-tests")
HYPERPOD_INSTANCE_TYPE = "ml.p5.48xlarge"


Expand Down
Loading