cuNumeric.jl
Leagte.jl and cuNumeric.jl are under active development at the moment. This is a pre-release API and is subject to change. Stability is not guaranteed until the first official release. We are actively working to improve the build experience to be more seamless and Julia-friendly. In parallel, we're developing a comprehensive testing framework to ensure reliability and robustness. Our public beta launch is targeted for Fall 2025.
The cuNumeric.jl package wraps the cuPyNumeric C++ API from NVIDIA to bring simple distributed computing on GPUs and CPUs to Julia! We provide a simple array abstraction, the NDArray
, which supports most of the operations you would expect from a normal Julia array.
This project is in alpha and we do not commit to anything necessarily working as you would expect. The current build process requires several external dependencies which are not registered on BinaryBuilder.jl yet. The build instructions and minimum pre-requesites are as follows:
Minimum prereqs
g++ capable of C++20
CUDA 12.2
Python 3.10
Ubuntu 20.04 or RHEL 8
Julia 1.10
CMake 3.26.4
1. Install Julia through JuliaUp
curl -fsSL https://install.julialang.org | sh -s -- --default-channel 1.10
This will install version 1.10 by default since that is what we have tested against. To verify 1.10 is the default run either of the following (you may need to source bashrc):
juliaup status
julia --version
If 1.10 is not your default, please set it to be the default. Other versions of Julia are untested.
juliaup default 1.10
2. Download cuNumeric.jl
cuNumeric.jl is not on the general registry yet. To add cuNumeric.jl to your environment run:
export LEGATE_DEVELOP_MODE=1 # required to build cxxwrap wrapper.
# Once we have cunumeric_wrapper_jll, this will be resolved.
# Legate is not registered
using Pkg; Pkg.add(url = "https://github.com/JuliaLegate/Legate.jl", rev = "main")
using Pkg; Pkg.add(url = "https://github.com/JuliaLegate/cuNumeric.jl", rev = "main")
] build # cunumeric_jll does not exist yet
The rev
option can be main or any tagged version. By default, this will use legate_jll and build cuPyNumeric from source. In 2b and 2c, we show different installation methods. Ensure that the enviroment variables are correctly set for custom builds.
To contribute to cuNumeric.jl, we recommend cloning the repository and manually triggering the build process with Pkg.build
or adding it to one of your existing environments with Pkg.develop
.
git clone https://github.com/JuliaLegate/cuNumeric.jl.git
cd cuNumeric.jl
julia --project=. -e 'using Pkg; Pkg.activate("."); Pkg.resolve(); Pkg.build()'
2b. Use preinstalled version of cuPyNumeric
We support using a custom install version of cuPyNumeric. See https://docs.nvidia.com/cupynumeric/latest/installation.html for details about different install configurations, or building cuPyNumeric from source.
export CUNUMERIC_CUSTOM_INSTALL=1
export CUNUMERIC_CUSTOM_INSTALL_LOCATION="/home/user/path/to/cupynumeric-install-dir"
using Pkg; Pkg.add(url = "https://github.com/JuliaLegate/cuNumeric.jl", rev = "main")
cuNumeric.jl depends on Legate.jl. To use a custom Legate install, follow the instructions here.
2c. Use a conda environment to install cuNumeric.jl
Note, you need conda >= 24.1 to install the conda package. More installation details are found here.
# with a new environment
conda create -n myenv -c conda-forge -c legate cupynumeric
# into an existing environment
conda install -c conda-forge -c legate cupynumeric
Once you have the conda package installed, you can activate here.
conda activate [conda-env-with-cupynumeric]
export CUNUMERIC_LEGATE_CONDA_INSTALL=1
using Pkg; Pkg.add(url = "https://github.com/JuliaLegate/cuNumeric.jl", rev = "main")
3. Test the Julia Package
Run this command in the Julia environment where cuNumeric.jl is installed.
using Pkg; Pkg.test("cuNumeric")
With everything working, its the perfect time to checkout some of our examples!
TO-DO List of Missing Important Features
Implement
unary_reduction
over arbitrary dimsOut-parameter
binary_op
Replace
as_type
withBase.convert
Integer powers (e.g x^3)
Support Ints on methods that takes floats
Programatic manipulation of Legate hardware config (not currently possible)
Float32 random number generation (not possible in current C++ API)
Normal random numbers (not possible in current C++ API)
Add Aqua.jl to CI to ensure we didn't pirate any types
Fix CodeCov reports
Contact
For technical questions, please either contact krasow(at)u.northwestern.edu
OR emeitz(at)andrew.cmu.edu
If the issue is building the package, please include the build.log
and .err
files found in cuNumeric.jl/deps/