Skip to main content

lightweight wrapper around basic LLVM functionality

Project description

Azure Pipelines Code Climate Coveralls.io Readthedocs.io

A Lightweight LLVM Python Binding for Writing JIT Compilers

llvmlite is a project originally tailored for Numba’s needs, using the following approach:

  • A small C wrapper around the parts of the LLVM C++ API we need that are not already exposed by the LLVM C API.

  • A ctypes Python wrapper around the C API.

  • A pure Python implementation of the subset of the LLVM IR builder that we need for Numba.

Why llvmlite

The old llvmpy binding exposes a lot of LLVM APIs but the mapping of C++-style memory management to Python is error prone. Numba and many JIT compilers do not need a full LLVM API. Only the IR builder, optimizer, and JIT compiler APIs are necessary.

Key Benefits

  • The IR builder is pure Python code and decoupled from LLVM’s frequently-changing C++ APIs.

  • Materializing a LLVM module calls LLVM’s IR parser which provides better error messages than step-by-step IR building through the C++ API (no more segfaults or process aborts).

  • Most of llvmlite uses the LLVM C API which is small but very stable (low maintenance when changing LLVM version).

  • The binding is not a Python C-extension, but a plain DLL accessed using ctypes (no need to wrestle with Python’s compiler requirements and C++ 11 compatibility).

  • The Python binding layer has sane memory management.

  • llvmlite is faster than llvmpy thanks to a much simpler architecture (the Numba test suite is twice faster than it was).

Compatibility

llvmlite has been tested with Python 3.10 – 3.13 and is likely to work with greater versions.

As of version 0.44.0, llvmlite requires LLVM 15.x.x on all architectures

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.44.0 - ……

15.x.x

0.41.0 - 0.43.0

14.x.x

0.40.0 - 0.40.1

11.x.x and 14.x.x (12.x.x and 13.x.x untested but may work)

0.37.0 - 0.39.1

11.x.x

0.34.0 - 0.36.0

10.0.x (9.0.x for aarch64 only)

0.33.0

9.0.x

0.29.0 - 0.32.0

7.0.x, 7.1.x, 8.0.x

0.27.0 - 0.28.0

7.0.x

0.23.0 - 0.26.0

6.0.x

0.21.0 - 0.22.0

5.0.x

0.17.0 - 0.20.0

4.0.x

0.16.0 - 0.17.0

3.9.x

0.13.0 - 0.15.0

3.8.x

0.9.0 - 0.12.1

3.7.x

0.6.0 - 0.8.0

3.6.x

0.1.0 - 0.5.1

3.5.x

Documentation

You’ll find the documentation at http://llvmlite.pydata.org

Pre-built binaries

We recommend you use the binaries provided by the Numba team for the Conda package manager. You can find them in Numba’s anaconda.org channel. For example:

$ conda install --channel=numba llvmlite

(or, simply, the official llvmlite package provided in the Anaconda distribution)

Other build methods

If you don’t want to use our pre-built packages, you can compile and install llvmlite yourself. The documentation will teach you how: http://llvmlite.pydata.org/en/latest/install/index.html

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

llvmlite-0.44.0.tar.gz (171.9 kB view details)

Uploaded Source

Built Distributions

llvmlite-0.44.0-cp313-cp313-win_amd64.whl (30.3 MB view details)

Uploaded CPython 3.13Windows x86-64

llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (41.2 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl (26.2 MB view details)

Uploaded CPython 3.13macOS 11.0+ ARM64

llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl (28.1 MB view details)

Uploaded CPython 3.13macOS 10.14+ x86-64

llvmlite-0.44.0-cp312-cp312-win_amd64.whl (30.3 MB view details)

Uploaded CPython 3.12Windows x86-64

llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (41.2 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl (26.2 MB view details)

Uploaded CPython 3.12macOS 11.0+ ARM64

llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl (28.1 MB view details)

Uploaded CPython 3.12macOS 10.14+ x86-64

llvmlite-0.44.0-cp311-cp311-win_amd64.whl (30.3 MB view details)

Uploaded CPython 3.11Windows x86-64

llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (41.2 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl (26.2 MB view details)

Uploaded CPython 3.11macOS 11.0+ ARM64

llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl (28.1 MB view details)

Uploaded CPython 3.11macOS 10.14+ x86-64

llvmlite-0.44.0-cp310-cp310-win_amd64.whl (30.3 MB view details)

Uploaded CPython 3.10Windows x86-64

llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (41.2 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.4 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl (26.2 MB view details)

Uploaded CPython 3.10macOS 11.0+ ARM64

llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl (28.1 MB view details)

Uploaded CPython 3.10macOS 10.14+ x86-64

File details

Details for the file llvmlite-0.44.0.tar.gz.

File metadata

  • Download URL: llvmlite-0.44.0.tar.gz
  • Upload date:
  • Size: 171.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0.tar.gz
Algorithm Hash digest
SHA256 07667d66a5d150abed9157ab6c0b9393c9356f229784a4385c02f99e94fc94d4
MD5 d90c2791ac086acac54b76d64e1efac0
BLAKE2b-256 896a95a3d3610d5c75293d5dbbb2a76480d5d4eeba641557b69fe90af6c5b84e

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 2fb7c4f2fb86cbae6dca3db9ab203eeea0e22d73b99bc2341cdf9de93612e930
MD5 b74b1e3284c6edc98b1ef12fe23b2a44
BLAKE2b-256 d081e66fc86539293282fd9cb7c9417438e897f369e79ffb62e1ae5e5154d4dd

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.2 MB
  • Tags: CPython 3.13, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 aa0097052c32bf721a4efc03bd109d335dfa57d9bffb3d4c24cc680711b8b4fc
MD5 282e96a8562aebc9f046955128b9c2c3
BLAKE2b-256 d8e112c5f20cb9168fb3464a34310411d5ad86e4163c8ff2d14a2b57e5cc6bac

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.44.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 46224058b13c96af1365290bdfebe9a6264ae62fb79b2b55693deed11657a8bf
MD5 320a724ca22d1ef413d9deed372b8a67
BLAKE2b-256 d21b656f5a357de7135a3777bd735cc7c9b8f23b4d37465505bd0eaf4be9befe

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: CPython 3.13, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp313-cp313-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 9c58867118bad04a0bb22a2e0068c693719658105e40009ffe95c7000fcde88e
MD5 32082720e25139d2bf6dab89aefc1185
BLAKE2b-256 01cf1dd5a60ba6aee7122ab9243fd614abcf22f36b0437cbbe1ccf1e3391461c

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.13, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp313-cp313-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 319bddd44e5f71ae2689859b7203080716448a3cd1128fb144fe5c055219d516
MD5 fa1d841c5d4bea800e2606fa38c74a3f
BLAKE2b-256 89244c0ca705a717514c2092b18476e7a12c74d34d875e05e4d742618ebbf449

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 eae7e2d4ca8f88f89d315b48c6b741dcb925d6a1042da694aa16ab3dd4cbd3a1
MD5 8753d555971d212aa99792e959775623
BLAKE2b-256 e23ba9a17366af80127bd09decbe2a54d8974b6d8b274b39bf47fbaedeec6307

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.2 MB
  • Tags: CPython 3.12, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 d752f89e31b66db6f8da06df8b39f9b91e78c5feea1bf9e8c1fba1d1c24c065d
MD5 5ea23a7f24d84e637d58f1600a08a0d2
BLAKE2b-256 53add79349dc07b8a395a99153d7ce8b01d6fcdc9f8231355a5df55ded649b61

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.44.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c0143a5ef336da14deaa8ec26c5449ad5b6a2b564df82fcef4be040b9cacfea9
MD5 7b8b56e033b7d05ffba1ea7f24331613
BLAKE2b-256 cbda8341fd3056419441286c8e26bf436923021005ece0bff5f41906476ae514

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: CPython 3.12, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp312-cp312-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 5f79a728e0435493611c9f405168682bb75ffd1fbe6fc360733b850c80a026db
MD5 b69e9972574f9d6c58e68f6b0ef8c81f
BLAKE2b-256 d653373b6b8be67b9221d12b24125fd0ec56b1078b660eeae266ec388a6ac9a0

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.12, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp312-cp312-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 1d671a56acf725bf1b531d5ef76b86660a5ab8ef19bb6a46064a705c6ca80aad
MD5 0a6ba2fdd5e2dc47ebd8fd380d4e9ab6
BLAKE2b-256 1586e3c3195b92e6e492458f16d233e58a1a812aa2bfbef9bdd0fbafcec85c60

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp311-cp311-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 d8489634d43c20cd0ad71330dde1d5bc7b9966937a263ff1ec1cebb90dc50955
MD5 91906b4878324eb833061bbcaedaffcb
BLAKE2b-256 5fc6258801143975a6d09a373f2641237992496e15567b907a4d401839d671b8

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.2 MB
  • Tags: CPython 3.11, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f01a394e9c9b7b1d4e63c327b096d10f6f0ed149ef53d38a09b3749dcf8c9610
MD5 ebcd253b342c9e7bafdaed10e874a2c0
BLAKE2b-256 d77ace6174664b9077fc673d172e4c888cb0b128e707e306bc33fff8c2035f0d

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.44.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 c5d22c3bfc842668168a786af4205ec8e3ad29fb1bc03fd11fd48460d0df64c1
MD5 bf9dffb5aa733dfb111bd22abc71d841
BLAKE2b-256 99fed030f1849ebb1f394bb3f7adad5e729b634fb100515594aca25c354ffc62

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: CPython 3.11, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 ace564d9fa44bb91eb6e6d8e7754977783c68e90a471ea7ce913bff30bd62427
MD5 4d54c203d6a81afeffcab968f4ca5fce
BLAKE2b-256 ffec506902dc6870249fbe2466d9cf66d531265d0f3a1157213c8f986250c033

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.11, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp311-cp311-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 eed7d5f29136bda63b6d7804c279e2b72e08c952b7c5df61f45db408e0ee52f3
MD5 6aea27e2b6310f05b7dced01badffc40
BLAKE2b-256 b5e286b245397052386595ad726f9742e5223d7aea999b18c518a50e96c3aca4

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp310-cp310-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 30.3 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 41e3839150db4330e1b2716c0be3b5c4672525b4c9005e17c7597f835f351ce2
MD5 b45c651ff2997ff8a70a34de77ab88bf
BLAKE2b-256 690735e7c594b021ecb1938540f5bce543ddd8713cff97f71d81f021221edc1b

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
  • Upload date:
  • Size: 41.2 MB
  • Tags: CPython 3.10, manylinux: glibc 2.27+ ARM64, manylinux: glibc 2.28+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 40526fb5e313d7b96bda4cbb2c85cd5374e04d80732dd36a282d72a560bb6408
MD5 ba4296de2ca051328faafaa8e3c996ad
BLAKE2b-256 301c9366b29ab050a726af13ebaae8d0dff00c3c58562261c79c635ad4f5eb71

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.44.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 7202b678cdf904823c764ee0fe2dfe38a76981f4c1e51715b4cb5abb6cf1d9e8
MD5 d63890a4d6018f9f793ccc4746f88dea
BLAKE2b-256 aa468ffbc114def88cc698906bf5acab54ca9fdf9214fe04aed0e71731fb3688

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 26.2 MB
  • Tags: CPython 3.10, macOS 11.0+ ARM64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 cccf8eb28f24840f2689fb1a45f9c0f7e582dd24e088dcf96e424834af11f791
MD5 20cb707282510f12d94d32b83a2501db
BLAKE2b-256 37d96e8943e1515d2f1003e8278819ec03e4e653e2eeb71e4d00de6cfe59424e

See more details on using hashes here.

File details

Details for the file llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.10, macOS 10.14+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/2.0.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.2.0.post20200714 requests-toolbelt/0.9.1 tqdm/4.47.0 CPython/3.8.5

File hashes

Hashes for llvmlite-0.44.0-cp310-cp310-macosx_10_14_x86_64.whl
Algorithm Hash digest
SHA256 9fbadbfba8422123bab5535b293da1cf72f9f478a65645ecd73e781f962ca614
MD5 81dd6ecc9a0ea43e79c52cc75f2ba840
BLAKE2b-256 4175d4863ddfd8ab5f6e70f4504cf8cc37f4e986ec6910f4ef8502bb7d3c1c71

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