File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,9 +58,6 @@ In addition, extra examples are included:
5858 launch a kernel on the device. Includes device memory allocation /
5959 deallocation, transfers between host and device, creation and usage of
6060 streams, and context management.
61- * ` examples/extra/numba_emm_plugin.py ` : Implements a Numba External Memory Management
62- plugin, showing that this CUDA Python Driver API can coexist with other
63- wrappers of the driver API.
6461
6562To run these samples:
6663* ` python -m pytest tests/cython/ ` against editable installations
Original file line number Diff line number Diff line change @@ -63,6 +63,3 @@ Advanced and interoperability
6363- `jit_program.py <https://github.com/NVIDIA/cuda-python/blob/|cuda_bindings_github_ref|/cuda_bindings/examples/extra/jit_program.py >`_
6464 JIT-compiles a SAXPY kernel with NVRTC and launches it through the Driver
6565 API.
66- - `numba_emm_plugin.py <https://github.com/NVIDIA/cuda-python/blob/|cuda_bindings_github_ref|/cuda_bindings/examples/extra/numba_emm_plugin.py >`_
67- shows how to back Numba's EMM interface with the NVIDIA CUDA Python Driver
68- API.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1414examples_files = glob .glob (os .path .join (examples_path , "**/*.py" ), recursive = True )
1515
1616
17- BROKEN_EXAMPLES = {"numba_emm_plugin.py" }
18-
19-
2017@pytest .mark .parametrize ("example" , examples_files )
2118def test_example (example ):
22- if os .path .basename (example ) in BROKEN_EXAMPLES :
23- pytest .skip (f"Skipping broken example: { example } " )
24-
2519 has_package_requirements_or_skip (example )
2620
2721 env = os .environ .copy ()
You can’t perform that action at this time.
0 commit comments