Skip to main content

CUda Matrix Multiply library

Project description

cumm

CUda Matrix Multiply library.

Build Status

cumm is developed during learning of CUTLASS, which use too much c++ template and make code unmaintainable. So I develop pccm, use python as meta programming language, to replace c++ template meta programming. Now pccm become a foundational framework of cumm and my other c++ project such as spconv. cumm also contains a python asyncio-based gemm simulator that share same meta program with CUDA code, enable gemm visualization and easy debug experience.

BREAKING CHANGES

  • 0.3.1: tv::DType enum value changed, this will affect all binary code of tv::Tensor user. you must recompile all code if upgrade to cumm >= 0.3.1.

News

Install

Prebuilt

We offer python 3.9-3.13 and cuda 11.4/11.8/12.1/12.4/12.6 prebuilt binaries for linux (manylinux_2_28).

We offer python 3.9-3.13 and cuda 11.4/11.8/12.1/12.4/12.6 prebuilt binaries for windows 10/11.

We offer python 3.9-3.13 prebuilt binaries for Mac OS X >= 14.0 (Apple Silicon Only).

pip install cumm for CPU-only

pip install cumm-cu114 for CUDA 11.4

pip install cumm-cu126 for CUDA 12.6

Build from source for development (JIT, recommend for develop)

WARNING Use code in tags!!! code in main branch may contain bugs.

The c++ code will be built automatically when you change c++ code in project.

Linux

  1. uninstall cumm installed by pip. you must ensure no "cumm" exists in pip list | grep cumm
  2. install build-essential, install CUDA
  3. git clone https://github.com/FindDefinition/cumm, cd ./cumm, git checkout tags/<tag_name>, pip install -e .
  4. in python, import cumm and wait for build finish.

Windows

  1. uninstall spconv and cumm installed by pip. you must ensure no "cumm" exists in pip list | grep cumm
  2. install visual studio 2019 or newer. make sure C++ development component is installed. install CUDA
  3. set powershell script execution policy
  4. start a new powershell, run tools/msvc_setup.ps1
  5. git clone https://github.com/FindDefinition/cumm, cd ./cumm, git checkout tags/<tag_name>, pip install -e .
  6. in python, import cumm and wait for build finish.

Build wheel from source

WARNING Use code in tags!!! code in main branch may contain bugs.

WARNING: If CUMM_CUDA_VERSION is set with a CUDA version, following steps will create a wheel named "cumm-cuxxx", not "cumm", this means you must use cumm-cuxxx in dependency of your project which depend on cumm, not cumm. If CUMM_CUDA_VERSION isn't set, cumm will always built with CUDA, so the CUDA must exists in your system. The wheel name will be cumm even if it is built with cuda.

Linux

It's recommend to build Linux packages in official build docker. Build with CUDA support don't need a real GPU.

Build in Official Docker
  1. select a cuda version. available: CUDA 11.1, 11.3, 11.4, 11.5, 12.0
  2. (Example for CUDA 11.4) git clone https://github.com/FindDefinition/cumm, cd ./cumm, docker run --rm -e PLAT=manylinux2014_x86_64 -e CUMM_CUDA_VERSION=114 -v `pwd`:/io scrin/manylinux2014-cuda:cu114-devel-1.0.0 bash -c "source /etc/bashrc && /io/tools/build-wheels.sh"
Build in your environment
  1. install build-essential, install CUDA
  2. set env for installed cuda version. for example, export CUMM_CUDA_VERSION="11.4". If you want to build CPU-only, run export CUMM_CUDA_VERSION="". If CUMM_CUDA_VERSION isn't set, you need to ensure cuda libraries are inside OS search path, and the built wheel name will be cumm, otherwise cumm-cuxxx
  3. run export CUMM_DISABLE_JIT="1"
  4. run python setup.py bdist_wheel+pip install dists/xxx.whl

Windows 10/11

  1. install visual studio 2019 or newer. make sure C++ development package is installed. install CUDA
  2. set powershell script execution policy
  3. start a new powershell, run tools/msvc_setup.ps1
  4. set env for installed cuda version. for example, $Env:CUMM_CUDA_VERSION = "11.4". If you want to build CPU-only, run $Env:CUMM_CUDA_VERSION = "". . If CUMM_CUDA_VERSION isn't set, you need to ensure cuda libraries are inside OS search path, and the built wheel name will be cumm, otherwise cumm-cuxxx
  5. run $Env:CUMM_DISABLE_JIT = "1"
  6. run python setup.py bdist_wheel+pip install dists/xxx.whl

Contributers

Note

The work is done when the author is an employee at Tusimple.

LICENSE

Apache 2.0

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

cumm_cu118-0.8.2-cp313-cp313-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.13Windows x86-64

cumm_cu118-0.8.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

cumm_cu118-0.8.2-cp312-cp312-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.12Windows x86-64

cumm_cu118-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

cumm_cu118-0.8.2-cp311-cp311-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.11Windows x86-64

cumm_cu118-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

cumm_cu118-0.8.2-cp310-cp310-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.10Windows x86-64

cumm_cu118-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

cumm_cu118-0.8.2-cp39-cp39-win_amd64.whl (2.2 MB view details)

Uploaded CPython 3.9Windows x86-64

cumm_cu118-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (26.6 MB view details)

Uploaded CPython 3.9manylinux: glibc 2.17+ x86-64

File details

Details for the file cumm_cu118-0.8.2-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: cumm_cu118-0.8.2-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.3

File hashes

Hashes for cumm_cu118-0.8.2-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 a23114eb6b25f0443e42eb4b8cef6f98b294f0e315aca4de8f96f7580a5777d3
MD5 e7d6375e65861db82d8f63fe7eb10319
BLAKE2b-256 4dad363222558be425811887ea937cd0d724821fd0ee4e2e6eea199901d1d742

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cumm_cu118-0.8.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e98df42c35a3e1c0bdc5b558eca2f0a9a47d99aba5a2a3df4aaaef1a6a34d61b
MD5 bd45b803a395071ae0885c771b25a79a
BLAKE2b-256 bb5aa3c3446127fed94aa9e321c5e8f038e6cc387977098724b1d9f7ca7849c2

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: cumm_cu118-0.8.2-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.12.10

File hashes

Hashes for cumm_cu118-0.8.2-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 0046a2c05166f85a8371f4f7627340511501d91256592e8f3064b3cf6566375a
MD5 8ddca27190b8ff644787c903e949976d
BLAKE2b-256 95b89ee2047b45067be22500950a6585b92551268d92eb6a777b82c6e79d71c7

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cumm_cu118-0.8.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a6b92cf22804766e8bfd10de0917c5be5157b8a6bd10556e9cb424f0ba5b5f6b
MD5 321d6d0bb3f8f142f5e113365f93fe72
BLAKE2b-256 c9f167d15a737d34915b99cff8a86c5bf371a766ab41ea05583861c2c37a5787

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: cumm_cu118-0.8.2-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.11.9

File hashes

Hashes for cumm_cu118-0.8.2-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 e2ec308d88e67c60ca44ac032f0a70dc4102e6b784260aba490196ae1e7a14ba
MD5 cd3c437c6e83d3a1234366b07ff66533
BLAKE2b-256 c2ad255c287695d127b2a685f68da7137c1cfdc04f2cdbea65470fc8d74725e4

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cumm_cu118-0.8.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 5bf35e12d61ce717e276e1ab7489d5334e4c0f57226299edbca3b630a4fa6dc1
MD5 289ac3bc0de2ca78952448d63038f93d
BLAKE2b-256 b215becf047b98792ee93ac7c959549fe4a40fde2ca3db39b2c70885859c97d3

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: cumm_cu118-0.8.2-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.11

File hashes

Hashes for cumm_cu118-0.8.2-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 c3665445267a785388f75700cc6fec10238effb7292d5e233dae7a8d9f0c85df
MD5 80426850bae108b9b4300a1db322d765
BLAKE2b-256 c7a511a40e5d0478758ff4a265538ae7758d19b3b8d69a78132f33bda2c66677

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cumm_cu118-0.8.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cbde5cd556a462889a630213050a6778379c4c6f252c5687a67e61bb1b9c28c3
MD5 b876bb82d1022532abf13108fd621d45
BLAKE2b-256 e24a9aa695631cf876d4beb717ff8170c74b657f750bb682f27921f20ce64f72

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: cumm_cu118-0.8.2-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 2.2 MB
  • Tags: CPython 3.9, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.9.13

File hashes

Hashes for cumm_cu118-0.8.2-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 2d34e6adf304a97f895766ec756e8250518e60940d24588f7660bee40893db53
MD5 f10bb4f57e954b0a11f386de1144507d
BLAKE2b-256 fce0c3f63810855be08fa82c50ac47853b5a9b53339c53c0b431fa5182d793c7

See more details on using hashes here.

File details

Details for the file cumm_cu118-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for cumm_cu118-0.8.2-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24a889e65fbcd377fbfd6f3c49c2983b7980af04d931ff097fa55232ccfc14cb
MD5 17705b150bdf2c6fa8ac3457a942da2a
BLAKE2b-256 f99155b980e07466b66bed45ae5b21faf45d364a94d100e2419c62e9167cbdc0

See more details on using hashes here.

Supported by

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