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 works with Python 3.8 and greater. We attempt to test with the latest Python version, this can be checked by looking at the public CI builds.

As of version 0.41.0, llvmlite requires LLVM 14.x.x on all architectures

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.41.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.41.1.tar.gz (146.6 kB view details)

Uploaded Source

Built Distributions

llvmlite-0.41.1-cp311-cp311-win_amd64.whl (28.1 MB view details)

Uploaded CPython 3.11 Windows x86-64

llvmlite-0.41.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

llvmlite-0.41.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (42.6 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

llvmlite-0.41.1-cp311-cp311-macosx_11_0_arm64.whl (28.8 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

llvmlite-0.41.1-cp311-cp311-macosx_10_9_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

llvmlite-0.41.1-cp310-cp310-win_amd64.whl (28.1 MB view details)

Uploaded CPython 3.10 Windows x86-64

llvmlite-0.41.1-cp310-cp310-win32.whl (23.4 MB view details)

Uploaded CPython 3.10 Windows x86

llvmlite-0.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

llvmlite-0.41.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (42.6 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

llvmlite-0.41.1-cp310-cp310-macosx_11_0_arm64.whl (28.8 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

llvmlite-0.41.1-cp310-cp310-macosx_10_9_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

llvmlite-0.41.1-cp39-cp39-win_amd64.whl (28.1 MB view details)

Uploaded CPython 3.9 Windows x86-64

llvmlite-0.41.1-cp39-cp39-win32.whl (23.4 MB view details)

Uploaded CPython 3.9 Windows x86

llvmlite-0.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

llvmlite-0.41.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (42.6 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

llvmlite-0.41.1-cp39-cp39-macosx_11_0_arm64.whl (28.8 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

llvmlite-0.41.1-cp39-cp39-macosx_10_9_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

llvmlite-0.41.1-cp38-cp38-win_amd64.whl (28.1 MB view details)

Uploaded CPython 3.8 Windows x86-64

llvmlite-0.41.1-cp38-cp38-win32.whl (23.4 MB view details)

Uploaded CPython 3.8 Windows x86

llvmlite-0.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (43.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

llvmlite-0.41.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (42.6 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

llvmlite-0.41.1-cp38-cp38-macosx_11_0_arm64.whl (28.8 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

llvmlite-0.41.1-cp38-cp38-macosx_10_9_x86_64.whl (31.0 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: llvmlite-0.41.1.tar.gz
  • Upload date:
  • Size: 146.6 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.41.1.tar.gz
Algorithm Hash digest
SHA256 f19f767a018e6ec89608e1f6b13348fa2fcde657151137cb64e56d48598a92db
MD5 4f58a46856bf2a82d8b661f1aa7b26ec
BLAKE2b-256 01c6bc6634da9f58edf91a1a002280c6380f404715245a49a46234b1d9d9585a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.41.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 28.1 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.41.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 9564c19b31a0434f01d2025b06b44c7ed422f51e719ab5d24ff03b7560066c9a
MD5 3e2d0853df7e2524e516f7aec2d7c1fd
BLAKE2b-256 14fed3a9c921a2adad2e9f24693754983f290e0dac9410666e802b9dba4d0218

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 2181bb63ef3c607e6403813421b46982c3ac6bfc1f11fa16a13eaafb46f578e6
MD5 8cf93d9d158901e42a5cfb036e36f68d
BLAKE2b-256 0adde10658cb0e4ad8364b37ae2a6187ebb6b3b35e08b36ef9e98790b9f2f437

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 b67340c62c93a11fae482910dc29163a50dff3dfa88bc874872d28ee604a83be
MD5 e8bc67388e9fba9bdfc4187361f1b8e4
BLAKE2b-256 b5b048caac8ea81d6a11a1917dd98258ea67c9b8a78a31fa45b89ae6aa94e678

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.41.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.8 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.41.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 855f280e781d49e0640aef4c4af586831ade8f1a6c4df483fb901cbe1a48d127
MD5 3ed5b5439e606f14ff4af48794d7ba2d
BLAKE2b-256 12f49bc78ef5d52cbe595a849d332c872583a6294afff6f5317de6dce4abbe55

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp311-cp311-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.11, macOS 10.9+ 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.41.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 210e458723436b2469d61b54b453474e09e12a94453c97ea3fbb0742ba5a83d8
MD5 fb780698920b840b507ba966ce0f9b0b
BLAKE2b-256 96e054b0a58969b208b3a66ed30f560e127f52c3add6027b8e67d0a00ea0b178

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.41.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 28.1 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.41.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 2b76acee82ea0e9304be6be9d4b3840208d050ea0dcad75b1635fa06e949a0ae
MD5 f12372ad4102b8e9095b63f68cb30780
BLAKE2b-256 1f05cfc9c51aff9adbb6f7df93df3fb20100ee5d9c3d0445ade3df8057e50b0a

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp310-cp310-win32.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.10, Windows x86
  • 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.41.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 fa1469901a2e100c17eb8fe2678e34bd4255a3576d1a543421356e9c14d6e2ae
MD5 afdbf1915d3a8e538f49d9f4d9207817
BLAKE2b-256 48397db84e829b874f90316e9f6d7497f761b9a645abe61f8c9588b292876314

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 0dd0338da625346538f1173a17cabf21d1e315cf387ca21b294ff209d176e244
MD5 3454951cd2ef0c497ac2da2690e5fc08
BLAKE2b-256 577def28d5812f852b93bd2a583d00cdcde56833d31b645ae0eaa7e71eecfb4e

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 1eee5cf17ec2b4198b509272cf300ee6577229d237c98cc6e63861b08463ddc6
MD5 f6d8115967d81368b96f1cf1198da128
BLAKE2b-256 da5eafce5c757df730be7706ae671f5fce2cacdf4e46eed2b1a916e595453388

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.41.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.8 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.41.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 150d0bc275a8ac664a705135e639178883293cf08c1a38de3bbaa2f693a0a867
MD5 deb29a527b960dfec7a10fdc9dba69c6
BLAKE2b-256 47d52d6261a47dd6b1005d60a6e37a3de007ddc15a297f146ee905605e3cbc3e

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp310-cp310-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.10, macOS 10.9+ 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.41.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 c1e1029d47ee66d3a0c4d6088641882f75b93db82bd0e6178f7bd744ebce42b9
MD5 ad68f46b5dff745d881e97e5f0b557a5
BLAKE2b-256 10e2931d2d35350d3c375d6c43a04982fb5d8f90c15002de024a814d919a1e67

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp39-cp39-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.9, 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.41.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 92f093986ab92e71c9ffe334c002f96defc7986efda18397d0f08534f3ebdc4d
MD5 6e8045d1c7a2a8ebef354f04fc964c9d
BLAKE2b-256 8899aa829162a871f0f91dba9a0344726449cafbff4e9e55d7a714051cbb6215

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp39-cp39-win32.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.9, Windows x86
  • 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.41.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 880cb57ca49e862e1cd077104375b9d1dfdc0622596dfa22105f470d7bacb309
MD5 2b10627cab6c9e6bd63cb1b7ed584f79
BLAKE2b-256 07730aef09cf017a4f8b9c0eb371d273e7bb3e514992c4f1d8ed09e8f81f4602

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 24091a6b31242bcdd56ae2dbea40007f462260bc9bdf947953acc39dffd54f8f
MD5 12f4079ff8ca57fdcb2dd10f392fe48a
BLAKE2b-256 bea655020df7f04666bceb3ccc5dc0cb0812d68d5fdec883ff015a9110928829

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 92c32356f669e036eb01016e883b22add883c60739bc1ebee3a1cc0249a50828
MD5 2f058ad9e15e69fb8ac58ea48a8f56ec
BLAKE2b-256 d35b5af7cc0d2097ada6372b8b90986b45267b7d137a4fda58d7534d867572b2

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp39-cp39-macosx_11_0_arm64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.8 MB
  • Tags: CPython 3.9, 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.41.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 bf14aa0eb22b58c231243dccf7e7f42f7beec48970f2549b3a6acc737d1a4ba4
MD5 b70b4b66a10f3192eb0c473944fd92be
BLAKE2b-256 8b66b3edcd1b2631af2daaf7a09520c5ff863e459eb17dd28f7d4cac63f3532c

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp39-cp39-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.9, macOS 10.9+ 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.41.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 04725975e5b2af416d685ea0769f4ecc33f97be541e301054c9f741003085802
MD5 d97581aec4a48fefcb4620012268ed5a
BLAKE2b-256 fc7ac6741000d767fed4b339fcd4fa65afbc5fe776473d5f9e9c41eceab0a7c6

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp38-cp38-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 28.1 MB
  • Tags: CPython 3.8, 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.41.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 df75594e5a4702b032684d5481db3af990b69c249ccb1d32687b8501f0689432
MD5 e93b88316f64ed8ea0a7303fe3d47b14
BLAKE2b-256 1b576da776f73951956ece7d8fda605c69d512a6724bb7b255adf9d48ef7941d

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp38-cp38-win32.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 23.4 MB
  • Tags: CPython 3.8, Windows x86
  • 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.41.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 2d92c51e6e9394d503033ffe3292f5bef1566ab73029ec853861f60ad5c925d0
MD5 8bf06a1b8b3fa6d5a9f7347879bf9fba
BLAKE2b-256 7ef0066eb0d43d276da3fc39cf61ad956293a2d3c97f4e976fcc58d3519862e8

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 8454c1133ef701e8c050a59edd85d238ee18bb9a0eb95faf2fca8b909ee3c89a
MD5 604db6c9470382b370a34502388c36da
BLAKE2b-256 46a5de824aba87a62e0da43f9b590ac91709d460a61e03f1b430b83ca64b76dc

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.41.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 f8afdfa6da33f0b4226af8e64cfc2b28986e005528fbf944d0a24a72acfc9432
MD5 2b3f64104872f3be8d480c3f36b46f52
BLAKE2b-256 37c02fcbb511e4af6f4bbd053b1ce16ae216ff088f3255add6b516c34175bfbc

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp38-cp38-macosx_11_0_arm64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.8 MB
  • Tags: CPython 3.8, 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.41.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 8b0a9a47c28f67a269bb62f6256e63cef28d3c5f13cbae4fab587c3ad506778b
MD5 d9a26c9360b0e48efd10cb2cb340dda6
BLAKE2b-256 a707c5c053cebc0d16fbbe5329fd10b9d141681fba7a805796e8517a1217d4e8

See more details on using hashes here.

File details

Details for the file llvmlite-0.41.1-cp38-cp38-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.41.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 31.0 MB
  • Tags: CPython 3.8, macOS 10.9+ 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.41.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 5940bc901fb0325970415dbede82c0b7f3e35c2d5fd1d5e0047134c2c46b3281
MD5 dd0beca4edfe8d317529cc54a931f27a
BLAKE2b-256 04adf5d3f8accf618e136a205de92db49516d1e9a868415164dab407107cece5

See more details on using hashes here.

Supported by

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