Skip to content

Commit af42677

Browse files
Updated all of the AI, TDX, and ICO modules and readme with update for C4
Updated all of the AI, TDX, and ICO modules and readme with update for C4
1 parent c70c6c8 commit af42677

File tree

8 files changed

+9
-10
lines changed

8 files changed

+9
-10
lines changed

examples/gcp-linux-fastchat-simple/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66

77
© Copyright 2024, Intel Corporation
88

9-
## GCP C3 4th Gen Xeon(code named Sapphire Rapids) & Intel® Optimized Cloud Recipe for FastChat
9+
## GCP C4 5th Gen Xeon(code named Emerald Rapids) & Intel® Optimized Cloud Recipe for FastChat
1010

11-
This demo will showcase Large Language Model(LLM) CPU inference using 4th Gen Xeon Scalable Processors on GCP.
11+
This demo will showcase Large Language Model(LLM) CPU inference using 5th Gen Xeon Scalable Processors on GCP.
1212

1313
## Usage
1414

examples/gcp-linux-fastchat-simple/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ module "linux_vm" {
1616
boot_image_family = "ubuntu-2204-lts"
1717
name = "intel-fastchat-${random_id.rid.dec}"
1818
zone = "us-central1-a"
19-
machine_type = "c3-standard-22"
19+
machine_type = "c4-standard-32"
2020
allow_stopping_for_update = true
2121
tags = ["fschat-${random_id.rid.dec}"]
2222
user_data = templatefile("./cloud_init.yml", {})

examples/gcp-linux-stable-diffusion/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## GCP C3 4th Gen Xeon(code named Sapphire Rapids) & Intel® Optimized Cloud Recipe for Stable Diffusion
1010

11-
This demo will showcase Stable Diffusion CPU inferencing using 4th Gen Xeon Scalable Processors on GCP.
11+
This demo will showcase Stable Diffusion CPU inferencing using 5th Gen Xeon Scalable Processors on GCP.
1212

1313
## Usage
1414

examples/gcp-linux-stable-diffusion/main.tf

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ module "linux_vm" {
1616
boot_image_family = "ubuntu-2204-lts"
1717
name = "intel-diffusion-${random_id.rid.dec}"
1818
zone = "us-central1-a"
19-
machine_type = "c3-standard-44"
20-
#machine_type = "n2-standard-32"
19+
machine_type = "c4-standard-32"
2120
allow_stopping_for_update = true
2221
tags = ["diffusion-${random_id.rid.dec}"]
2322
user_data = templatefile("./cloud_init.yml", {})

examples/gcp-linux-tdx-vm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Intel GCP VM on default network
1010

11-
This module creates a Intel Confiddential Compute Linux VM on the default network with Intel Xeon 4th Generation Scalable processors (code-named Sapphire Rapids) VM with Confidential Computing and Intel Trust Domain Extension (Intel TDX) technology.
11+
This module creates a Intel Confiddential Compute Linux VM on the default network with Intel Xeon 5th Generation Scalable processors (code-named Emerald Rapids) VM with Confidential Computing and Intel Trust Domain Extension (Intel TDX) technology.
1212

1313
Update the project with a your project id in GCP. It is located on the variables.tf file under this example folder for "GCP-Linux-VM"
1414

examples/gcp-linux-tdx-vm/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ module "linux_vm" {
1717
enable_confidential_compute = var.enable_confidential_compute
1818
confidential_instance_type = var.confidential_instance_type
1919
on_host_maintenance = "TERMINATE"
20-
machine_type = "c3-standard-4"
20+
machine_type = "c4-standard-4"
2121

2222

2323
access_config = [{

examples/gcp-rhel-vm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
## Intel Red Hat Enterprise Linux GCP VM Example
1010

11-
This module creates a Red Hat Enterprise Linux (RHEL) VM on the Intel Sapphire Rapids CPU. The virtual machine is created on an Intel Sapphire Rapids c3-standard-4 by default.
11+
This module creates a Red Hat Enterprise Linux (RHEL) VM on the Intel 5th Gen Emerald Rapids CPU. The virtual machine is created on an Intel Sapphire Rapids c3-standard-4 by default.
1212

1313
Update the project with a your project id in GCP. It is located on the variables.tf file under this example folder for "GCP-RHEL-VM".
1414

examples/gen-ai-xeon-opea-codegen/main.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module "linux_vm" {
2222
}, ]
2323
}
2424

25-
#Required firewall rules
25+
Required firewall rules
2626
resource "google_compute_firewall" "rules" {
2727
project = var.project
2828
name = "ai-opea-codegen-${random_id.rid.dec}"

0 commit comments

Comments
 (0)