Skip to content

Commit 2306c0e

Browse files
LolaOysdwheeler
authored andcommitted
add review comments
1 parent ac7c8ae commit 2306c0e

File tree

6 files changed

+39
-40
lines changed

6 files changed

+39
-40
lines changed

docset/winserver2022-ps/hyper-v/Add-VMGpuPartitionAdapter.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Adds a GPU partition adapter to a virtual machine.
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
55
ms.date: 09/22/2022
6-
online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/add-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
online version: https://learn.microsoft.com/powershell/module/hyper-v/add-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Add-VMGpuPartitionAdapter
99
---
@@ -47,15 +47,15 @@ $vm = Get-VM -name "TestVM"
4747
Add-VMGpuPartitionAdapter -VM $vm
4848
```
4949

50-
Assigns a partition to a specific VM object.
50+
This example assigns a partition to a specific VM object.
5151

5252
### Example 2
5353
```powershell
5454
$vm = Get-VM -name "TestVM"
5555
Add-VMGpuPartitionAdapter -VM $vm -Instancepath "SampleGPUInstancePath"
5656
```
5757

58-
Assigns a partition from a specific GPU to a VM where the instance path is the GPU device ID name on the host.
58+
This example assigns a partition from a specific GPU to a VM where the instance path is the GPU device ID name on the host.
5959

6060
## PARAMETERS
6161

@@ -111,7 +111,7 @@ Accept wildcard characters: False
111111
```
112112
113113
### -InstancePath
114-
Represents the Device Instance path of a GPU in the host. This value can be obtained from the "Name" property of the command Get-VMHostPartitionableGpu
114+
Represents the Device Instance path of a GPU in the host. This value can be obtained from the "Name" property of the command 'Get-VMHostPartitionableGpu'.
115115
116116
```yaml
117117
Type: String
@@ -156,7 +156,7 @@ Accept wildcard characters: False
156156
```
157157
158158
### -MaxPartitionEncode
159-
the maximum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver.
159+
The maximum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver.
160160
161161
```yaml
162162
Type: UInt64
@@ -171,7 +171,7 @@ Accept wildcard characters: False
171171
```
172172
173173
### -MaxPartitionVRAM
174-
the maximum VRAM supported by the host GPU. This is defined by the manufacturer's driver.
174+
The maximum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver.
175175
176176
```yaml
177177
Type: UInt64
@@ -186,7 +186,7 @@ Accept wildcard characters: False
186186
```
187187
188188
### -MinPartitionCompute
189-
the minimum number of compute assigned by the host GPU. This is defined by the manufacturer's driver.
189+
The minimum number of compute assigned by the host GPU. This is defined by the manufacturer's driver.
190190
191191
```yaml
192192
Type: UInt64
@@ -201,7 +201,7 @@ Accept wildcard characters: False
201201
```
202202
203203
### -MinPartitionDecode
204-
the minimum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver.
204+
The minimum number of decoders assigned by the host GPU. This is defined by the manufacturer's driver.
205205
206206
```yaml
207207
Type: UInt64
@@ -216,7 +216,7 @@ Accept wildcard characters: False
216216
```
217217
218218
### -MinPartitionEncode
219-
the minimum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver.
219+
The minimum number of encoders assigned by the host GPU. This is defined by the manufacturer's driver.
220220
221221
```yaml
222222
Type: UInt64
@@ -231,7 +231,7 @@ Accept wildcard characters: False
231231
```
232232
233233
### -MinPartitionVRAM
234-
the minimum VRAM supported by the host GPU. This is defined by the manufacturer's driver.
234+
The minimum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver.
235235
236236
```yaml
237237
Type: UInt64
@@ -246,7 +246,7 @@ Accept wildcard characters: False
246246
```
247247
248248
### -OptimalPartitionCompute
249-
the optimal number of compute assigned by the host GPU. This is defined by the manufacturer's driver.
249+
The optimal number of compute assigned by the host GPU. This is defined by the manufacturer's driver.
250250
251251
```yaml
252252
Type: UInt64
@@ -260,8 +260,8 @@ Accept pipeline input: False
260260
Accept wildcard characters: False
261261
```
262262
263-
### -the optimalPartitionDecode
264-
the optimal number of decoders assigned by the host GPU. This is defined by the manufacturer's driver.
263+
### -OptimalPartitionDecode
264+
The optimal number of decoders assigned by the host GPU. This is defined by the manufacturer's driver.
265265
266266
```yaml
267267
Type: UInt64
@@ -276,7 +276,7 @@ Accept wildcard characters: False
276276
```
277277
278278
### -OptimalPartitionEncode
279-
the optimal number of encoders assigned by the host GPU. This is defined by the manufacturer's driver.
279+
The optimal number of encoders assigned by the host GPU. This is defined by the manufacturer's driver.
280280
281281
```yaml
282282
Type: UInt64
@@ -291,7 +291,7 @@ Accept wildcard characters: False
291291
```
292292
293293
### -OptimalPartitionVRAM
294-
the optimal VRAM supported by the host GPU. This is defined by the manufacturer's driver.
294+
The optimal VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver.
295295
296296
```yaml
297297
Type: UInt64

docset/winserver2022-ps/hyper-v/Get-VMGpuPartitionAdapter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Gets the information of assigned GPU partitions to a virtual machin
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
55
ms.date: 09/22/2022
6-
online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-VMGpuPartitionAdapter
99
---
@@ -37,7 +37,7 @@ $testvm = get-VM "TestVM"
3737
Get-VMGpuPartitionAdapter -VM $testvm
3838
```
3939

40-
Displays the GPU information assigned to a VM object.
40+
This example gets the GPU information assigned to a VM object.
4141

4242
## PARAMETERS
4343

@@ -108,7 +108,7 @@ Accept wildcard characters: False
108108
```
109109
110110
### -VM
111-
Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk, ('*'), is the wildcard.
111+
Specifies the virtual machine whose virtual network adapters are to be retrieved. The asterisk ('*') is the wildcard.
112112
If it is specified the cmdlet returns virtual network adapters from every virtual machine in the system.
113113
114114
```yaml

docset/winserver2022-ps/hyper-v/Get-VMHostPartitionableGpu.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Gets the host machine’s partitionable GPU.
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
55
ms.date: 09/22/2022
6-
online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/get-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
online version: https://learn.microsoft.com/powershell/module/hyper-v/get-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Get-VMHostPartitionableGpu
99
---
@@ -37,14 +37,14 @@ This displays the information of the GPU as provided by the manufacturer's drive
3737
Get-VMHostPartitionableGpu
3838
```
3939

40-
Gets the details of the local partitionable graphic processing unit on the host
40+
This example gets the details of the local partitionable graphic processing unit on the host.
4141

4242
### Example 2
4343
```powershell
4444
Get-VMHostPartitionableGpu -ComputerName "SampleHost"
4545
```
4646

47-
Displays a partitionable GPU by using the host name. This command will display all the GPU devices available for partitioning in the host.
47+
This example gets a partitionable GPU by using the host name. This command will display all the GPU devices available for partitioning in the host.
4848

4949
### Example 3
5050
```powershell
@@ -91,8 +91,7 @@ Accept wildcard characters: False
9191
```
9292
9393
### -Credential
94-
Specifies one or more user accounts that have permission to perform this action.
95-
The default is the current user.
94+
Specifies one or more user accounts that have permission to perform this action. The default is the current user.
9695
9796
```yaml
9897
Type: PSCredential[]

docset/winserver2022-ps/hyper-v/Remove-VMGpuPartitionAdapter.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Removes an assigned GPU partition from a virtual machine.
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
55
ms.date: 09/22/2022
6-
online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/remove-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
online version: https://learn.microsoft.com/powershell/module/hyper-v/remove-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Remove-VMGpuPartitionAdapter
99
---
@@ -45,7 +45,7 @@ $testvm = Get-VM "TestVM"
4545
Remove-VMGpuPartitionAdapter -VM $testvm
4646
```
4747

48-
Removes a partition assigned to a specific VM object.
48+
This example removes a partition assigned to a specific VM object.
4949

5050
### Example 2
5151
```powershell
@@ -54,7 +54,7 @@ $GPUpartition = Get-VMGpuPartitionAdapter -VM $testvm
5454
Remove-VMGpuPartitionAdapter -VM $testvm -AdapterId $GPUpartiton[0].id
5555
```
5656

57-
Remove a specific partition in a VM.
57+
This example removes a specific partition object from a specific VM.
5858

5959
## PARAMETERS
6060

docset/winserver2022-ps/hyper-v/Set-VMGpuPartitionAdapter.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: Assigns a partition of a GPU to a virtual machine.
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
55
ms.date: 09/22/2022
6-
online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmgpupartitionadapter?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Set-VMGpuPartitionAdapter
99
---
@@ -57,7 +57,7 @@ $vm = get-vm test
5757
Set-VMGpuPartitionAdapter -VM $vm
5858
```
5959

60-
Assign a partition to a VM passing a VM object.
60+
This example assign a partition to a VM passing a VM object.
6161

6262
## PARAMETERS
6363

@@ -126,7 +126,7 @@ Accept wildcard characters: False
126126
```
127127
128128
### -MaxPartitionCompute
129-
The maximum number of compute assigned by the host GPU. This is defined by the manufacturer's driver.
129+
The maximum number of compute assigned by the host GPU. This is defined by the manufacturer's driver.
130130
131131
```yaml
132132
Type: UInt64
@@ -171,7 +171,7 @@ Accept wildcard characters: False
171171
```
172172
173173
### -MaxPartitionVRAM
174-
The maximum VRAM supported by the host GPU. This is defined by the manufacturer's driver.
174+
The maximum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver.
175175
176176
```yaml
177177
Type: UInt64
@@ -231,7 +231,7 @@ Accept wildcard characters: False
231231
```
232232
233233
### -MinPartitionVRAM
234-
The minimum VRAM supported by the host GPU. This is defined by the manufacturer's driver.
234+
The minimum VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver.
235235
236236
```yaml
237237
Type: UInt64
@@ -291,7 +291,7 @@ Accept wildcard characters: False
291291
```
292292
293293
### -OptimalPartitionVRAM
294-
The optimal VRAM supported by the host GPU. This is defined by the manufacturer's driver.
294+
The optimal VRAM in byte supported by the host GPU. This is defined by the manufacturer's driver.
295295
296296
```yaml
297297
Type: UInt64
@@ -337,7 +337,7 @@ Accept wildcard characters: False
337337
```
338338
339339
### -VMGpuPartitionAdapter
340-
GPU partition object obtained from 'Get-VMGpuPartitionAdapter''
340+
GPU partition object obtained from 'Get-VMGpuPartitionAdapter'.
341341
342342
```yaml
343343
Type: VMGpuPartitionAdapter[]

docset/winserver2022-ps/hyper-v/Set-VMHostPartitionableGpu.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
---
2-
description: Configures host partitionable GPU to the number of partitions supported by the manufacturer.
2+
description: Configures the host partitionable GPU to the number of partitions supported by the manufacturer.
33
external help file: Microsoft.HyperV.PowerShell.Cmdlets.dll-Help.xml
44
Module Name: Hyper-V
55
ms.date: 10/21/2022
6-
online version: https://learn.microsoft.com/en-us/powershell/module/hyper-v/set-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
6+
online version: https://learn.microsoft.com/powershell/module/hyper-v/set-vmhostpartitionablegpu?view=windowsserver2022-ps&wt.mc_id=ps-gethelp
77
schema: 2.0.0
88
title: Set-VMHostPartitionableGpu
99
---
1010

1111
# Set-VMHostPartitionableGpu
1212

1313
## SYNOPSIS
14-
Configures host partitionable GPU to the number of partitions supported by the manufacturer
14+
Configures the host partitionable GPU to the number of partitions supported by the manufacturer.
1515

1616
## SYNTAX
1717

@@ -39,7 +39,7 @@ Set-VMHostPartitionableGpu [-Passthru] [-Name <String>] [-PartitionCount <UInt16
3939
```
4040

4141
## DESCRIPTION
42-
The `Set-VMHostPartitionableGpu` cmdlet Configures host partitionable GPU to the number of partitions supported by the manufacturer.
42+
The `Set-VMHostPartitionableGpu` cmdlet configures the host partitionable GPU to the number of partitions supported by the manufacturer.
4343

4444
## EXAMPLES
4545

@@ -48,15 +48,15 @@ The `Set-VMHostPartitionableGpu` cmdlet Configures host partitionable GPU to the
4848
Set-VMHostPartitionableGpu -ComputerName SampleHost -partitioncount 8
4949
```
5050

51-
Partitions a GPU in a specific host.
51+
This example partitions a GPU in a specific host into eight partitions.
5252

5353
### Example 2
5454
```powershell
5555
$GPU = Get-VMHostPartitionableGpu -name "SampleGPUDeviceIDName"
5656
Set-VMHostPartitionableGpu -Name $GPU -partitionCount 4
5757
```
5858

59-
Partitions a GPU in a host using the GPU device ID name.
59+
This example partitions a GPU in a host into four partitions by using the GPU device ID name.
6060

6161
## PARAMETERS
6262

@@ -110,7 +110,7 @@ Accept wildcard characters: False
110110
```
111111
112112
### -HostPartitionableGpu
113-
Full GPU object, obtained by executing Get-VMHostPartitionableGpu.
113+
Full GPU object, obtained by executing 'Get-VMHostPartitionableGpu'.
114114
115115
```yaml
116116
Type: VMHostPartitionableGpu[]

0 commit comments

Comments
 (0)