Skip to content

Commit 639b742

Browse files
committed
fix: typo
1 parent f52f73b commit 639b742

3 files changed

Lines changed: 19 additions & 17 deletions

File tree

_posts/2000-01-01-hyperv_gpu.html

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,14 @@
99
excerpt_separator: </p>
1010
---
1111

12-
<div class="cell border-box-sizing text_cell rendered" id="cell-id=02390e0a"><div class="prompt input_prompt">
12+
<div class="cell border-box-sizing text_cell rendered" id="cell-id=e187d2bf"><div class="prompt input_prompt">
1313
</div><div class="inner_cell">
1414
<div class="text_cell_render border-box-sizing rendered_html">
1515
<p>Want to run GPU-accelerated applications inside a Windows 11 Hyper-V virtual machine? This guide walks you through enabling GPU Paravirtualization (GPU-PV).</p>
1616
</div>
1717
</div>
1818
</div>
19-
<div class="cell border-box-sizing text_cell rendered" id="cell-id=be733980"><div class="prompt input_prompt">
19+
<div class="cell border-box-sizing text_cell rendered" id="cell-id=5c905d2d"><div class="prompt input_prompt">
2020
</div><div class="inner_cell">
2121
<div class="text_cell_render border-box-sizing rendered_html">
2222
<h2 id="TL;DR">TL;DR<a class="anchor-link" href="#TL;DR"></a></h2><ol>
@@ -27,12 +27,12 @@ <h2 id="TL;DR">TL;DR<a class="anchor-link" href="#TL;DR">¶</a></h2><ol>
2727
</div>
2828
</div>
2929
</div>
30-
<div class="cell border-box-sizing text_cell rendered" id="cell-id=a1561928"><div class="prompt input_prompt">
30+
<div class="cell border-box-sizing text_cell rendered" id="cell-id=3334958b"><div class="prompt input_prompt">
3131
</div><div class="inner_cell">
3232
<div class="text_cell_render border-box-sizing rendered_html">
3333
<h2 id="Introduction">Introduction<a class="anchor-link" href="#Introduction"></a></h2><p>I will walk through the process of enabling GPU-PV, allowing the guest VM to utilize the host's graphics card for acceleration.
34-
We will use a software called Hyper-V, which is
35-
In this guide, we refer to the "host" as your main physical computer running Windows 11, and the "guest" as the virtual machine (VM) you intend to run</p>
34+
We will use a software called Hyper-V, the native hypervisor developed by Microsoft, to create virtual machines on x86-64 systems running Windows.</p>
35+
<p>In this guide, we refer to the "host" as your main physical computer running Windows 11, and the "guest" as the virtual machine (VM) you intend to run</p>
3636
<h2 id="Requirements">Requirements<a class="anchor-link" href="#Requirements"></a></h2><p>Before starting, ensure you have the following:</p>
3737
<ul>
3838
<li>Host OS: Windows 11.</li>
@@ -83,14 +83,14 @@ <h2 id="Finalize-and-check-the-Guest-OS">Finalize and check the Guest OS<a class
8383
</div>
8484
</div>
8585
</div>
86-
<div class="cell border-box-sizing text_cell rendered" id="cell-id=0881b531"><div class="prompt input_prompt">
86+
<div class="cell border-box-sizing text_cell rendered" id="cell-id=87fc513f"><div class="prompt input_prompt">
8787
</div><div class="inner_cell">
8888
<div class="text_cell_render border-box-sizing rendered_html">
8989
<h2 id="To-go-further">To go further<a class="anchor-link" href="#To-go-further"></a></h2>
9090
</div>
9191
</div>
9292
</div>
93-
<div class="cell border-box-sizing text_cell rendered" id="cell-id=020c3f9e"><div class="prompt input_prompt">
93+
<div class="cell border-box-sizing text_cell rendered" id="cell-id=2c782a99"><div class="prompt input_prompt">
9494
</div><div class="inner_cell">
9595
<div class="text_cell_render border-box-sizing rendered_html">
9696
<p>If you need to change the VM's display resolution, you can use the following PowerShell command on the host:</p>

notebooks/hyperv_gpu.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@
1818
## Introduction
1919
2020
I will walk through the process of enabling GPU-PV, allowing the guest VM to utilize the host's graphics card for acceleration.
21-
We will use a software called Hyper-V, which is
21+
We will use a software called Hyper-V, the native hypervisor developed by Microsoft, to create virtual machines on x86-64 systems running Windows.
22+
2223
In this guide, we refer to the "host" as your main physical computer running Windows 11, and the "guest" as the virtual machine (VM) you intend to run
2324
2425
## Requirements

notebooks/ipynb/hyperv_gpu.ipynb

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "44fa9be8",
5+
"id": "b7f97ec0",
66
"metadata": {
77
"cell_marker": "'''",
88
"lines_to_next_cell": 0
@@ -13,7 +13,7 @@
1313
},
1414
{
1515
"cell_type": "markdown",
16-
"id": "02390e0a",
16+
"id": "e187d2bf",
1717
"metadata": {
1818
"cell_marker": "'''",
1919
"lines_to_next_cell": 0
@@ -24,7 +24,7 @@
2424
},
2525
{
2626
"cell_type": "markdown",
27-
"id": "be733980",
27+
"id": "5c905d2d",
2828
"metadata": {
2929
"cell_marker": "'''",
3030
"lines_to_next_cell": 0
@@ -38,7 +38,7 @@
3838
},
3939
{
4040
"cell_type": "markdown",
41-
"id": "a1561928",
41+
"id": "3334958b",
4242
"metadata": {
4343
"cell_marker": "'''",
4444
"lines_to_next_cell": 0
@@ -47,7 +47,8 @@
4747
"## Introduction\n",
4848
"\n",
4949
"I will walk through the process of enabling GPU-PV, allowing the guest VM to utilize the host's graphics card for acceleration.\n",
50-
"We will use a software called Hyper-V, which is \n",
50+
"We will use a software called Hyper-V, the native hypervisor developed by Microsoft, to create virtual machines on x86-64 systems running Windows.\n",
51+
"\n",
5152
"In this guide, we refer to the \"host\" as your main physical computer running Windows 11, and the \"guest\" as the virtual machine (VM) you intend to run\n",
5253
"\n",
5354
"## Requirements\n",
@@ -130,7 +131,7 @@
130131
},
131132
{
132133
"cell_type": "markdown",
133-
"id": "0881b531",
134+
"id": "87fc513f",
134135
"metadata": {
135136
"cell_marker": "'''",
136137
"lines_to_next_cell": 0
@@ -141,7 +142,7 @@
141142
},
142143
{
143144
"cell_type": "markdown",
144-
"id": "020c3f9e",
145+
"id": "2c782a99",
145146
"metadata": {
146147
"cell_marker": "'''",
147148
"lines_to_next_cell": 0
@@ -157,7 +158,7 @@
157158
},
158159
{
159160
"cell_type": "markdown",
160-
"id": "0f2781e9",
161+
"id": "2b2a10a2",
161162
"metadata": {
162163
"cell_marker": "'''",
163164
"lines_to_next_cell": 0
@@ -168,7 +169,7 @@
168169
},
169170
{
170171
"cell_type": "markdown",
171-
"id": "ca136e6f",
172+
"id": "8b2b708d",
172173
"metadata": {
173174
"cell_marker": "'''"
174175
},

0 commit comments

Comments
 (0)