Skip to content

Commit 5aebbd6

Browse files
author
cuda-python-bot
committed
Deploy latest docs: 023c4bf
1 parent a649a50 commit 5aebbd6

File tree

80 files changed

+101
-101
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

80 files changed

+101
-101
lines changed

docs/cuda-bindings/jupyter_execute/overview.ipynb

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"cells": [
33
{
44
"cell_type": "markdown",
5-
"id": "718d94e5",
5+
"id": "d6e5983f",
66
"metadata": {},
77
"source": [
88
"# Overview\n",
@@ -50,7 +50,7 @@
5050
{
5151
"cell_type": "code",
5252
"execution_count": 1,
53-
"id": "5eafb8e2",
53+
"id": "500e0bc6",
5454
"metadata": {},
5555
"outputs": [],
5656
"source": [
@@ -60,7 +60,7 @@
6060
},
6161
{
6262
"cell_type": "markdown",
63-
"id": "00c6c084",
63+
"id": "99d8aa68",
6464
"metadata": {},
6565
"source": [
6666
"Error checking is a fundamental best practice in code development and a code\n",
@@ -72,7 +72,7 @@
7272
{
7373
"cell_type": "code",
7474
"execution_count": 2,
75-
"id": "76f7c21f",
75+
"id": "f7194ed9",
7676
"metadata": {},
7777
"outputs": [],
7878
"source": [
@@ -98,7 +98,7 @@
9898
},
9999
{
100100
"cell_type": "markdown",
101-
"id": "37bfdf5e",
101+
"id": "574f1156",
102102
"metadata": {},
103103
"source": [
104104
"It’s common practice to write CUDA kernels near the top of a translation unit,\n",
@@ -112,7 +112,7 @@
112112
{
113113
"cell_type": "code",
114114
"execution_count": 3,
115-
"id": "151c8077",
115+
"id": "7db9525c",
116116
"metadata": {},
117117
"outputs": [],
118118
"source": [
@@ -130,7 +130,7 @@
130130
},
131131
{
132132
"cell_type": "markdown",
133-
"id": "77e36154",
133+
"id": "e6909cbd",
134134
"metadata": {},
135135
"source": [
136136
"Go ahead and compile the kernel into PTX. Remember that this is executed at runtime using NVRTC. There are three basic steps to NVRTC:\n",
@@ -147,7 +147,7 @@
147147
{
148148
"cell_type": "code",
149149
"execution_count": 4,
150-
"id": "6380d726",
150+
"id": "29a84dd0",
151151
"metadata": {},
152152
"outputs": [],
153153
"source": [
@@ -177,7 +177,7 @@
177177
},
178178
{
179179
"cell_type": "markdown",
180-
"id": "73639cee",
180+
"id": "bc192acf",
181181
"metadata": {},
182182
"source": [
183183
"Before you can use the PTX or do any work on the GPU, you must create a CUDA\n",
@@ -189,7 +189,7 @@
189189
{
190190
"cell_type": "code",
191191
"execution_count": 5,
192-
"id": "a8b0a641",
192+
"id": "5208ec43",
193193
"metadata": {},
194194
"outputs": [],
195195
"source": [
@@ -199,7 +199,7 @@
199199
},
200200
{
201201
"cell_type": "markdown",
202-
"id": "01aeb015",
202+
"id": "ba57ff74",
203203
"metadata": {},
204204
"source": [
205205
"With a CUDA context created on device 0, load the PTX generated earlier into a\n",
@@ -211,7 +211,7 @@
211211
{
212212
"cell_type": "code",
213213
"execution_count": 6,
214-
"id": "6057a70e",
214+
"id": "7ef46fac",
215215
"metadata": {},
216216
"outputs": [],
217217
"source": [
@@ -224,7 +224,7 @@
224224
},
225225
{
226226
"cell_type": "markdown",
227-
"id": "3cc62adf",
227+
"id": "eb2bf3a3",
228228
"metadata": {},
229229
"source": [
230230
"Next, get all your data prepared and transferred to the GPU. For increased\n",
@@ -236,7 +236,7 @@
236236
{
237237
"cell_type": "code",
238238
"execution_count": 7,
239-
"id": "39976530",
239+
"id": "06edc002",
240240
"metadata": {},
241241
"outputs": [],
242242
"source": [
@@ -254,7 +254,7 @@
254254
},
255255
{
256256
"cell_type": "markdown",
257-
"id": "4708dc4e",
257+
"id": "45cf660f",
258258
"metadata": {},
259259
"source": [
260260
"With the input data `a`, `x`, and `y` created for the SAXPY transform device,\n",
@@ -271,7 +271,7 @@
271271
{
272272
"cell_type": "code",
273273
"execution_count": 8,
274-
"id": "290539ff",
274+
"id": "4c60981c",
275275
"metadata": {},
276276
"outputs": [],
277277
"source": [
@@ -291,7 +291,7 @@
291291
},
292292
{
293293
"cell_type": "markdown",
294-
"id": "100f23f3",
294+
"id": "283cddda",
295295
"metadata": {},
296296
"source": [
297297
"With data prep and resources allocation finished, the kernel is ready to be\n",
@@ -308,7 +308,7 @@
308308
{
309309
"cell_type": "code",
310310
"execution_count": 9,
311-
"id": "c30fece8",
311+
"id": "b63f9587",
312312
"metadata": {},
313313
"outputs": [],
314314
"source": [
@@ -324,7 +324,7 @@
324324
},
325325
{
326326
"cell_type": "markdown",
327-
"id": "34b1c2cc",
327+
"id": "89102c01",
328328
"metadata": {},
329329
"source": [
330330
"Now the kernel can be launched:"
@@ -333,7 +333,7 @@
333333
{
334334
"cell_type": "code",
335335
"execution_count": 10,
336-
"id": "13f927ea",
336+
"id": "b21b1757",
337337
"metadata": {},
338338
"outputs": [],
339339
"source": [
@@ -359,7 +359,7 @@
359359
},
360360
{
361361
"cell_type": "markdown",
362-
"id": "d42a4e62",
362+
"id": "b342dd7c",
363363
"metadata": {},
364364
"source": [
365365
"The `cuLaunchKernel` function takes the compiled module kernel and execution\n",
@@ -374,7 +374,7 @@
374374
{
375375
"cell_type": "code",
376376
"execution_count": 11,
377-
"id": "f7585063",
377+
"id": "14cef09a",
378378
"metadata": {},
379379
"outputs": [],
380380
"source": [
@@ -386,7 +386,7 @@
386386
},
387387
{
388388
"cell_type": "markdown",
389-
"id": "e7492b89",
389+
"id": "972f83a7",
390390
"metadata": {},
391391
"source": [
392392
"Perform verification of the data to ensure correctness and finish the code with\n",
@@ -396,7 +396,7 @@
396396
{
397397
"cell_type": "code",
398398
"execution_count": 12,
399-
"id": "7672d2a6",
399+
"id": "3218f2ee",
400400
"metadata": {},
401401
"outputs": [],
402402
"source": [
@@ -410,7 +410,7 @@
410410
},
411411
{
412412
"cell_type": "markdown",
413-
"id": "fec99914",
413+
"id": "0a867e16",
414414
"metadata": {},
415415
"source": [
416416
"## Performance\n",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Sphinx build info version 1
22
# This file records the configuration used when building these files. When it is not found, a full rebuild will be done.
3-
config: f75720a36d145d32d07e69eaa885be6b
3+
config: 5e373cf2466ab77a69c09d1c5f526e5b
44
tags: 645f666f9bcd5a90fca523b33c5a78b7
-53 Bytes
Binary file not shown.

docs/cuda-bindings/latest/api.html

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

160160
<div class="announcement">
161161
<aside class="announcement-content">
162-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
162+
<em>Warning</em>: This documentation is built from the development branch!
163163
</aside>
164164
</div>
165165

docs/cuda-bindings/latest/environment_variables.html

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

160160
<div class="announcement">
161161
<aside class="announcement-content">
162-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
162+
<em>Warning</em>: This documentation is built from the development branch!
163163
</aside>
164164
</div>
165165

docs/cuda-bindings/latest/genindex.html

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

158158
<div class="announcement">
159159
<aside class="announcement-content">
160-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
160+
<em>Warning</em>: This documentation is built from the development branch!
161161
</aside>
162162
</div>
163163

docs/cuda-bindings/latest/index.html

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

160160
<div class="announcement">
161161
<aside class="announcement-content">
162-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
162+
<em>Warning</em>: This documentation is built from the development branch!
163163
</aside>
164164
</div>
165165

docs/cuda-bindings/latest/install.html

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

160160
<div class="announcement">
161161
<aside class="announcement-content">
162-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
162+
<em>Warning</em>: This documentation is built from the development branch!
163163
</aside>
164164
</div>
165165

docs/cuda-bindings/latest/module/driver.html

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

160160
<div class="announcement">
161161
<aside class="announcement-content">
162-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
162+
<em>Warning</em>: This documentation is built from the development branch!
163163
</aside>
164164
</div>
165165

docs/cuda-bindings/latest/module/nvjitlink.html

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

160160
<div class="announcement">
161161
<aside class="announcement-content">
162-
<em>Warning</em>: This documentation is only a preview for <a href="https://github.com/NVIDIA/cuda-python/pull/410">PR 410</a>!
162+
<em>Warning</em>: This documentation is built from the development branch!
163163
</aside>
164164
</div>
165165

0 commit comments

Comments
 (0)