Skip to content

Commit

Permalink
Add gpus property to AvailableWorkloadProfiles. (#25328)
Browse files Browse the repository at this point in the history
* Add gpus property to AvailableWorkloadProfiles.

* Fix.
  • Loading branch information
yalixiang authored Aug 29, 2023
1 parent 4486efe commit cc881ff
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@
"format": "int32",
"description": "Memory in GiB."
},
"gpus": {
"type": "integer",
"format": "int32",
"description": "Number of GPUs."
},
"displayName": {
"type": "string",
"description": "The everyday name of the workload profile."
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,20 @@
"name": "Dedicated-F16",
"type": "Microsoft.App/availableManagedEnvironmentsWorkloadProfileTypes"
},
{
"location": "East US",
"properties": {
"displayName": "Dedicated-NC48-A100",
"category": "GPU-NC-A100",
"applicability": "Custom",
"cores": 48,
"memoryGiB": 440,
"gpus": 2
},
"id": "/subscriptions/34adfa4f-cedf-4dc0-ba29-b6d1a69ab345/providers/Microsoft.App/availableManagedEnvironmentsWorkloadProfileTypes/NC48-A100",
"name": "NC48-A100",
"type": "Microsoft.App/availableManagedEnvironmentsWorkloadProfileTypes"
},
{
"location": "East US",
"properties": {
Expand Down

0 comments on commit cc881ff

Please sign in to comment.