Skip to content

Commit 33173f6

Browse files
authored
update instance types for integ test (#2881)
1 parent 0a0b6e6 commit 33173f6

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

tests/conftest.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -363,7 +363,7 @@ def cpu_instance_type(sagemaker_session, request):
363363

364364
@pytest.fixture(scope="module")
365365
def gpu_instance_type(request):
366-
return "ml.p2.xlarge"
366+
return "ml.p3.2xlarge"
367367

368368

369369
@pytest.fixture(scope="session")
@@ -408,7 +408,7 @@ def pytest_generate_tests(metafunc):
408408
region in tests.integ.HOSTING_NO_P2_REGIONS
409409
or region in tests.integ.TRAINING_NO_P2_REGIONS
410410
):
411-
params.append("ml.p2.xlarge")
411+
params.append("ml.p3.2xlarge")
412412
metafunc.parametrize("instance_type", params, scope="session")
413413

414414
_generate_all_framework_version_fixtures(metafunc)

tests/integ/test_horovod.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def test_hvd_gpu(
5959
sagemaker_session,
6060
tensorflow_training_latest_version,
6161
tensorflow_training_latest_py_version,
62-
"ml.p2.xlarge",
62+
"ml.p3.2xlarge",
6363
tmpdir,
6464
)
6565

0 commit comments

Comments
 (0)