Skip to content

Commit

Permalink
Merge pull request #447 from GoogleCloudPlatform/disable_gpu_prebuild
Browse files Browse the repository at this point in the history
Disable GPU on the KFP prebuilt pipeline
  • Loading branch information
takumiohym authored May 3, 2024
2 parents 43c5963 + ed792fd commit cd9ec69
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ def tune_hyperparameters(
{
"machine_spec": {
"machine_type": "n1-standard-4",
"accelerator_type": "NVIDIA_TESLA_K80",
"accelerator_count": 1,
# Enable if you want to use GPU.
# "accelerator_type": "NVIDIA_TESLA_K80",
# "accelerator_count": 1,
},
"replica_count": 1,
"container_spec": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,9 @@ def tune_hyperparameters(
{
"machine_spec": {
"machine_type": "n1-standard-4",
"accelerator_type": "NVIDIA_TESLA_K80",
"accelerator_count": 1,
# Enable if you want to use GPU.
# "accelerator_type": "NVIDIA_TESLA_K80",
# "accelerator_count": 1,
},
"replica_count": 1,
"container_spec": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -250,8 +250,9 @@
" {\n",
" \"machine_spec\": {\n",
" \"machine_type\": \"n1-standard-4\",\n",
" \"accelerator_type\": \"NVIDIA_TESLA_T4\",\n",
" \"accelerator_count\": 1,\n",
" # Enable if you want to use GPU.\n",
" # \"accelerator_type\": \"NVIDIA_TESLA_T4\",\n",
" # \"accelerator_count\": 1,\n",
" },\n",
" \"replica_count\": 1,\n",
" \"container_spec\": {\n",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -240,8 +240,9 @@
" {\n",
" \"machine_spec\": {\n",
" \"machine_type\": \"n1-standard-4\",\n",
" \"accelerator_type\": \"NVIDIA_TESLA_T4\",\n",
" \"accelerator_count\": 1,\n",
" # Enable if you want to use GPU.\n",
" # \"accelerator_type\": \"NVIDIA_TESLA_T4\",\n",
" # \"accelerator_count\": 1,\n",
" },\n",
" \"replica_count\": 1,\n",
" \"container_spec\": {\n",
Expand Down

0 comments on commit cd9ec69

Please sign in to comment.