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
10 changes: 7 additions & 3 deletions instances/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ The SQL files are read during the [build](../build/) process.

* [Series](./series/)
* [A2](./series/a2.sql)
* [A3](./series/a2.sql)
* [A3](./series/a3.sql)
* [A4](./series/a4.sql)
* [A4X](./series/a4x.sql)
* [C2](./series/c2.sql)
* [C2D](./series/c2d.sql)
* [C3](./series/c3.sql)
Expand Down Expand Up @@ -50,7 +52,10 @@ The cost per machine type in region and licenses are added with the [gcosts](htt
<a href="https://cloud.google.com/compute/docs/machine-types#machine_type_comparison" rel="nofollow">Machine series comparison</a>
<ul>
<li>
<a href="https://cloud.google.com/compute/docs/accelerator-optimized-machines#a2_vms" rel="nofollow">A2</a> and
<a href="https://cloud.google.com/compute/docs/accelerator-optimized-machines#a2_vms" rel="nofollow">A2</a>,
<a href="https://cloud.google.com/compute/docs/accelerator-optimized-machines#a3-vms" rel="nofollow">A3</a>,
<a href="https://cloud.google.com/compute/docs/accelerator-optimized-machines#a4-vms" rel="nofollow">A4</a>,
<a href="https://cloud.google.com/compute/docs/accelerator-optimized-machines#a4x-vms" rel="nofollow">A4X</a> and
<a href="https://cloud.google.com/compute/docs/accelerator-optimized-machines#g2-vms" rel="nofollow">G2</a> accelerator optimized machines
</li>
<li>
Expand Down Expand Up @@ -85,4 +90,3 @@ The cost per machine type in region and licenses are added with the [gcosts](htt
<li><a href="https://cloud.google.com/solutions/sap/docs/certifications-sap-apps#sap-certified-vms" rel="nofollow">Certified SAP applications on Google Cloud</a></li>
<li><a href="https://cloud.google.com/solutions/sap/docs/certifications-sap-hana#hana-cert-table-vms" rel="nofollow">Certified machine types for SAP HANA</a></li>
</ul>

11 changes: 11 additions & 0 deletions instances/series/a4.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/* A4 Accelerator-optimized machine family */
/* https://cloud.google.com/compute/docs/accelerator-optimized-machines#a4-vms */
/* https://cloud.google.com/compute/docs/gpus#a4 */
UPDATE instances SET
series = 'a4',
family = 'Accelerator-optimized',
cpuPlatform = 'Sapphire Rapids',
localSsd = '12000',
bandwidth = '3600',
spot = '1'
WHERE name LIKE 'a4-%';
12 changes: 12 additions & 0 deletions instances/series/a4x.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
/* A4X Accelerator-optimized machine family */
/* https://cloud.google.com/compute/docs/accelerator-optimized-machines#a4x-vms */
/* https://cloud.google.com/compute/docs/gpus#gb200-gpus */
UPDATE instances SET
series = 'a4x',
family = 'Accelerator-optimized',
cpuPlatform = 'ARM Neoverse V2',
localSsd = '12000',
bandwidth = '2000',
arm = '1',
spot = '1'
WHERE name LIKE 'a4x-%';
5 changes: 5 additions & 0 deletions instances/series/gpu/gpu_names.sql
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,12 @@ UPDATE instances SET acceleratorType = "NVIDIA V100" WHERE acceleratorType
UPDATE instances SET acceleratorType = "NVIDIA P100 vWS" WHERE acceleratorType LIKE "nvidia-tesla-p100-vws";
UPDATE instances SET acceleratorType = "NVIDIA P100" WHERE acceleratorType LIKE "nvidia-tesla-p100";

UPDATE instances SET acceleratorType = "NVIDIA H200 141GB" WHERE acceleratorType LIKE "nvidia-h200-141gb";

UPDATE instances SET acceleratorType = "NVIDIA H100 80GB" WHERE acceleratorType LIKE "nvidia-h100-80gb";
UPDATE instances SET acceleratorType = "NVIDIA H100 80GB Mega" WHERE acceleratorType LIKE "nvidia-h100-mega-80gb";

UPDATE instances SET acceleratorType = "NVIDIA B200" WHERE acceleratorType LIKE "nvidia-b200";
UPDATE instances SET acceleratorType = "NVIDIA GB200" WHERE acceleratorType LIKE "nvidia-gb200";

UPDATE instances SET acceleratorType = "NVIDIA K80 (EOL!)" WHERE acceleratorType LIKE "nvidia-tesla-k80";