You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/quickstart.rst
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -16,11 +16,11 @@ Prerequisites
16
16
17
17
cuTile Python requires the following:
18
18
19
+
- Linux x86_64, Linux aarch64 or Windows x86_64
19
20
- A GPU with compute capability 10.x or 12.x
20
21
- NVIDIA Driver r580 or later
21
22
- CUDA Toolkit 13.1 or later
22
-
- The `PATH` environment variable must contain the path to the `bin/` directory of the CUDA Toolkit
23
-
- Python version 3.10 or higher
23
+
- Python version 3.10, 3.11, 3.12 or 3.13
24
24
25
25
26
26
Installing cuTile Python
@@ -47,9 +47,9 @@ The quickstart sample on this page uses cupy, which can be installed with:
47
47
48
48
The cuTile Python samples in the ``samples/`` directory also use pytest, torch, and numpy packages.
49
49
50
-
For torch installation instructions, see `<https://pytorch.org/get-started/locally/>`__.
50
+
For PyTorch installation instructions, see `<https://pytorch.org/get-started/locally/>`__.
51
51
52
-
Pytest and numpy can be installed with:
52
+
Pytest and Numpy can be installed with:
53
53
54
54
.. code-block:: bash
55
55
@@ -68,7 +68,7 @@ This example shows a structure common to cuTile kernels:
68
68
* Write the resulting tile(s) out to GPU memory
69
69
70
70
In this case, the kernel loads tiles from two vectors, ``a`` and ``b``. These loads create tiles called ``a_tile`` and ``b_tile``. These tiles are added together to form a third tile, called ``result``. In the last step, the kernel stores the ``result`` tile to the output vector ``c``.
71
-
This code can be found in the cuTile Python repository at ``samples/quickstart/VectorAdd_quickstart.py``.
71
+
More samples can be found in the cuTile Python `repository <https://github.com/nvidia/cutile-python>`_.
0 commit comments