Skip to content

Commit

Permalink
fix(aiplatform): Update NVIDIA_TESLA_K80 to NVIDIA_TESLA_T4 (GoogleCl…
Browse files Browse the repository at this point in the history
  • Loading branch information
Sita04 authored and rafaelMurata committed May 27, 2024
1 parent d0af378 commit cfc22c6
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ static void createBatchPredictionJobSample(
MachineSpec machineSpec =
MachineSpec.newBuilder()
.setMachineType("n1-standard-2")
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_K80)
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_T4)
.setAcceleratorCount(1)
.build();
BatchDedicatedResources dedicatedResources =
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ static void createCustomJobSample(String project, String displayName, String con
MachineSpec machineSpec =
MachineSpec.newBuilder()
.setMachineType("n1-standard-4")
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_K80)
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_T4)
.setAcceleratorCount(1)
.build();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ static void createHyperparameterTuningJobPythonPackageSample(
MachineSpec machineSpec =
MachineSpec.newBuilder()
.setMachineType("n1-standard-4")
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_K80)
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_T4)
.setAcceleratorCount(1)
.build();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ static void createHyperparameterTuningJobSample(
MachineSpec machineSpec =
MachineSpec.newBuilder()
.setMachineType("n1-standard-4")
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_K80)
.setAcceleratorType(AcceleratorType.NVIDIA_TESLA_T4)
.setAcceleratorCount(1)
.build();
ContainerSpec containerSpec =
Expand Down

0 comments on commit cfc22c6

Please sign in to comment.