Skip to content

Commit

Permalink
Update gcp example
Browse files Browse the repository at this point in the history
  • Loading branch information
cmd-ntrf committed Jan 15, 2025
1 parent 33dd6fb commit 70b8f99
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@ the operating system and service software
and with x86-64 processors (see [NVIDIA/mig-parted issue #30](https://github.com/NVIDIA/mig-parted/issues/30)).
6. `shard`: total number of [Sharding](https://slurm.schedmd.com/gres.html#Sharding) on the node. Sharding allows sharing the same GPU on multiple jobs. The total number of shards is evenly distributed across all GPUs on the node.
The instance specifications are retrieved from the cloud provider data source, but it is possible to explictly specify them.
The instance specifications are retrieved from the cloud provider data source, but it is possible to explicitly specify them.
7. `cpus`: number of logical processors on the node - [CPUs in slurm.conf](https://slurm.schedmd.com/slurm.conf.html#OPT_CPUs)
8. `ram`: size of real memory on the node in megabyte - [RealMemory in slurm.conf](https://slurm.schedmd.com/slurm.conf.html#OPT_RealMemory)
9. `gpus`: number of graphical processor on the node - [Gres=gpu:<gpus> in slurm.conf](https://slurm.schedmd.com/slurm.conf.html#OPT_Gres_1)
Expand Down
2 changes: 1 addition & 1 deletion examples/gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ module "gcp" {
type = "n1-standard-2",
tags = ["node"],
count = 1,
gpus = 1
gpu_type = "nvidia-tesla-t4",
gpu_count = 1
}
}

Expand Down

0 comments on commit 70b8f99

Please sign in to comment.