forked from doitintl/gpu-finder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgpu-config.json
34 lines (34 loc) · 868 Bytes
/
gpu-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"project_id": "dc-consulting-home",
"bucket_name": "find-gcp-gpus",
"number_of_instances": 1,
"instance_config": {
"name": "demo-instance",
"root_persistent_disk": {
"boot": "True",
"autoDelete": "True"
},
"machine_type": "n1-standard-4",
"zone": [
"europe-west1-b",
"us-central1-b"
],
"network_interfaces": {
"network": "global/networks/home-network"
},
"gpu_type": "nvidia-tesla-t4",
"number_of_gpus": 1,
"image_project": "deeplearning-platform-release",
"image_family": "common-cu123",
"identity_and_api_access": {
"service_account_email": "[email protected]",
"scopes": "https://www.googleapis.com/auth/cloud-platform"
},
"disk_type": "pd-standard",
"disk_size": "50",
"firewall_rules": [
"http-server",
"https-server"
]
}
}