Metadata-Version: 2.4
Name: cuda-core
Version: 0.4.0
Summary: cuda.core: (experimental) pythonic CUDA module
Author: NVIDIA Corporation
License-Expression: Apache-2.0
Project-URL: homepage, https://nvidia.github.io/cuda-python/
Project-URL: documentation, https://nvidia.github.io/cuda-python/cuda-core/
Project-URL: repository, https://github.com/NVIDIA/cuda-python/tree/main/cuda_core
Project-URL: issues, https://github.com/NVIDIA/cuda-python/issues/
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: End Users/Desktop
Classifier: Natural Language :: English
Classifier: Operating System :: POSIX :: Linux
Classifier: Operating System :: Microsoft :: Windows
Classifier: Topic :: Education
Classifier: Topic :: Scientific/Engineering
Classifier: Topic :: Software Development :: Libraries
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Environment :: GPU :: NVIDIA CUDA
Classifier: Environment :: GPU :: NVIDIA CUDA :: 12
Classifier: Environment :: GPU :: NVIDIA CUDA :: 13
Requires-Python: >=3.9
Description-Content-Type: text/x-rst
License-File: LICENSE
Requires-Dist: numpy
Provides-Extra: cu12
Requires-Dist: cuda-bindings[all]==12.*; extra == "cu12"
Provides-Extra: cu13
Requires-Dist: cuda-bindings[all]==13.*; extra == "cu13"
Dynamic: license-file

.. SPDX-FileCopyrightText: Copyright (c) 2024-2025 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
.. SPDX-License-Identifier: Apache-2.0

*******************************************************
cuda-core: Pythonic access to CUDA core functionalities
*******************************************************

.. image:: https://img.shields.io/badge/NVIDIA-black?logo=nvidia
   :target: https://www.nvidia.com/
   :alt: NVIDIA

`cuda.core <https://nvidia.github.io/cuda-python/cuda-core/>`_ bridges Python's productivity with CUDA's performance through intuitive and pythonic APIs. The mission is to provide users full access to all of the core CUDA features in Python, such as runtime control, compiler and linker.

* `Repository <https://github.com/NVIDIA/cuda-python/tree/main/cuda_core>`_
* `Documentation <https://nvidia.github.io/cuda-python/cuda-core/>`_
* `Examples <https://github.com/NVIDIA/cuda-python/tree/main/cuda_core/examples>`_
* `Issue tracker <https://github.com/NVIDIA/cuda-python/issues/>`_

``cuda.core`` is currently under active development. Feedback and suggestions are welcome!


Installation
============

.. code-block:: bash

   pip install cuda-core[cu12]

Please refer to the `installation instructions <https://nvidia.github.io/cuda-python/cuda-core/latest/install.html>`_ for different ways of installing ``cuda.core``, including building from source.
