Skip to main content

Jupyter notebook plugin to run CUDA C/C++ code

Project description

nvcc4jupyter: CUDA C++ plugin for Jupyter Notebook

Testing Python Versions CI - Test Coverage
Code Quality Code style: black security: bandit
Package PyPI Latest Release PyPI Downloads

nvcc4jupyter is a Jupyter Notebook plugin that provides cell and line magics to allow running CUDA C++ code from a notebook. This is especially useful when combined with a hosted service such a Google's Colab which provide CUDA capable GPUs and you can start learning CUDA C++ without having to install anything or even to own a GPU yourself.

Table of Contents

Main Features

Here are just a few of the things that nvcc4jupyter does well:

Install

The installer for the latest released version is available at the Python Package Index (PyPI).

pip install nvcc4jupyter

Usage

First, load the extension to enable the magic commands:

%load_ext nvcc4jupyter

Running a quick CUDA Hello World program:

%%cuda
#include <stdio.h>

__global__ void hello(){
    printf("Hello from block: %u, thread: %u\n", blockIdx.x, threadIdx.x);
}

int main(){
    hello<<<2, 2>>>();
    cudaDeviceSynchronize();
}

For more advanced use cases, see the documentation.

Documentation

The official documentation is hosted on readthedocs.

License

MIT

Contributing

The recommended setup for development is using the devcontainer in GitHub Codespaces or locally in VSCode.

If not using the devcontainer you need to install the package with the development dependencies and install the pre-commit hook before commiting any changes:

pip install .[dev]
pre-commit install

Go to Top

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

nvcc4jupyter-1.1.0.tar.gz (21.7 kB view details)

Uploaded Source

Built Distribution

nvcc4jupyter-1.1.0-py3-none-any.whl (8.0 kB view details)

Uploaded Python 3

File details

Details for the file nvcc4jupyter-1.1.0.tar.gz.

File metadata

  • Download URL: nvcc4jupyter-1.1.0.tar.gz
  • Upload date:
  • Size: 21.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for nvcc4jupyter-1.1.0.tar.gz
Algorithm Hash digest
SHA256 e7375a6fb2bf4fb17c0c5065a7dbe655f02cd633c135c603da07444d2e952283
MD5 371297b84d24ba646da157b542b74206
BLAKE2b-256 f62339493bc2a1db914b927f81a161ae5ea30cdc3619efd8d6935c698e7a2b2a

See more details on using hashes here.

File details

Details for the file nvcc4jupyter-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: nvcc4jupyter-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 8.0 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/4.0.2 CPython/3.11.8

File hashes

Hashes for nvcc4jupyter-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 e2b2acbb79d726227ace2ffdeb18b901e4debb9cf9419b13a35a389a655ee4ac
MD5 72fe9e6f8e02c4704b8c2a7887500f3a
BLAKE2b-256 e188587a32224649c40a4c7c9217b9c75bacb5d6a29a6270ef942455f85387d2

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page