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 quite faster than llvmpy’s thanks to a much simpler architeture (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.37.0, llvmlite requires LLVM 11.x.x on all architectures

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.37.0 - …

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.40.1.tar.gz (136.3 kB view details)

Uploaded Source

Built Distributions

llvmlite-0.40.1-cp311-cp311-win_amd64.whl (27.7 MB view details)

Uploaded CPython 3.11 Windows x86-64

llvmlite-0.40.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ x86-64

llvmlite-0.40.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (41.1 MB view details)

Uploaded CPython 3.11 manylinux: glibc 2.17+ ARM64

llvmlite-0.40.1-cp311-cp311-macosx_11_0_arm64.whl (28.1 MB view details)

Uploaded CPython 3.11 macOS 11.0+ ARM64

llvmlite-0.40.1-cp311-cp311-macosx_10_9_x86_64.whl (30.4 MB view details)

Uploaded CPython 3.11 macOS 10.9+ x86-64

llvmlite-0.40.1-cp310-cp310-win_amd64.whl (27.7 MB view details)

Uploaded CPython 3.10 Windows x86-64

llvmlite-0.40.1-cp310-cp310-win32.whl (23.1 MB view details)

Uploaded CPython 3.10 Windows x86

llvmlite-0.40.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ x86-64

llvmlite-0.40.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (41.1 MB view details)

Uploaded CPython 3.10 manylinux: glibc 2.17+ ARM64

llvmlite-0.40.1-cp310-cp310-macosx_11_0_arm64.whl (28.1 MB view details)

Uploaded CPython 3.10 macOS 11.0+ ARM64

llvmlite-0.40.1-cp310-cp310-macosx_10_9_x86_64.whl (30.4 MB view details)

Uploaded CPython 3.10 macOS 10.9+ x86-64

llvmlite-0.40.1-cp39-cp39-win_amd64.whl (27.7 MB view details)

Uploaded CPython 3.9 Windows x86-64

llvmlite-0.40.1-cp39-cp39-win32.whl (23.1 MB view details)

Uploaded CPython 3.9 Windows x86

llvmlite-0.40.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ x86-64

llvmlite-0.40.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (41.1 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.17+ ARM64

llvmlite-0.40.1-cp39-cp39-macosx_11_0_arm64.whl (28.1 MB view details)

Uploaded CPython 3.9 macOS 11.0+ ARM64

llvmlite-0.40.1-cp39-cp39-macosx_10_9_x86_64.whl (30.4 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

llvmlite-0.40.1-cp38-cp38-win_amd64.whl (27.7 MB view details)

Uploaded CPython 3.8 Windows x86-64

llvmlite-0.40.1-cp38-cp38-win32.whl (23.1 MB view details)

Uploaded CPython 3.8 Windows x86

llvmlite-0.40.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl (42.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ x86-64

llvmlite-0.40.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl (41.1 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.17+ ARM64

llvmlite-0.40.1-cp38-cp38-macosx_11_0_arm64.whl (28.1 MB view details)

Uploaded CPython 3.8 macOS 11.0+ ARM64

llvmlite-0.40.1-cp38-cp38-macosx_10_9_x86_64.whl (30.4 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: llvmlite-0.40.1.tar.gz
  • Upload date:
  • Size: 136.3 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.40.1.tar.gz
Algorithm Hash digest
SHA256 5cdb0d45df602099d833d50bd9e81353a5e036242d3c003c5b294fc61d1986b4
MD5 92d5713d17623cbe6e9e24d9d00bcfec
BLAKE2b-256 95e0369f1c0613c9532319ed3307f4289afc8338d3bf71c1875fdf43603a2d19

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 27.7 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.40.1-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 5b3076dc4e9c107d16dc15ecb7f2faf94f7736cd2d5e9f4dc06287fd672452c1
MD5 466179b4154cad7c3a9178065f2b0c0b
BLAKE2b-256 097a3e0bec597ca9e3382ba87c139813ea0b05068d6d5358e05f4557a8c24d63

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 a36d9f244b6680cb90bbca66b146dabb2972f4180c64415c96f7c8a2d8b60a36
MD5 9612e8a8339ff7c437d2c384dffad596
BLAKE2b-256 a8053e00ccd24027f059c7850abf13dc2d7d71aed99f6e431719d121707a2664

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 0c23edd196bd797dc3a7860799054ea3488d2824ecabc03f9135110c2e39fcbc
MD5 ede80963ae490b28463a8d94339fe3c0
BLAKE2b-256 a5b9709dd131b6f45252f18a3b318503a7b929fea99245dd220ef48a4675e819

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp311-cp311-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.1 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.40.1-cp311-cp311-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 467b43836b388eaedc5a106d76761e388dbc4674b2f2237bc477c6895b15a634
MD5 0ef8f3961df68bbc71945a032fc49784
BLAKE2b-256 d3fe14ad307b173df79e8792f253c67e9edde6aefa00b25de031863662d223b4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp311-cp311-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.4 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.40.1-cp311-cp311-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 a66a5bd580951751b4268f4c3bddcef92682814d6bc72f3cd3bb67f335dd7097
MD5 e568f1e0da45de4b20df047d6dcb476e
BLAKE2b-256 2bda9de67270696d43ab28eba38c9a248f646e6b9a3fb2c7115504a2a986f55f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 27.7 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.40.1-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 7b37297f3cbd68d14a97223a30620589d98ad1890e5040c9e5fc181063f4ed49
MD5 b0ce43b11d80abac4288b78c44fdbb8b
BLAKE2b-256 6c4fe6f9dc0b34e5b8450ef757cd35afda999c8cc5098907a512cf0ecae840b5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp310-cp310-win32.whl
  • Upload date:
  • Size: 23.1 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.40.1-cp310-cp310-win32.whl
Algorithm Hash digest
SHA256 09f83ea7a54509c285f905d968184bba00fc31ebf12f2b6b1494d677bb7dde9b
MD5 5a1b810a53b09ac7657c3823179ed0a1
BLAKE2b-256 d1f425df35f5e403cb146ed57fedcd43e8de22a5b45a597b2ec5a1ef6315f93b

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 bbd5e82cc990e5a3e343a3bf855c26fdfe3bfae55225f00efd01c05bbda79918
MD5 ff62bca89423dc47bc1587ef0f443507
BLAKE2b-256 1473424ef49a4bb7bbc9c16f3fc66926cb3018699c69146cd130642c76ff2d97

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 bba2747cf5b4954e945c287fe310b3fcc484e2a9d1b0c273e99eb17d103bb0e6
MD5 9a698b62b80f4d9de8e8717835898dad
BLAKE2b-256 c593077aba44d99aad58674f8dc28aefe5743d15827bc6e66302052df9e411a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp310-cp310-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.1 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.40.1-cp310-cp310-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 3673c53cb21c65d2ff3704962b5958e967c6fc0bd0cff772998face199e8d87b
MD5 cb4d6d76de7618bd529179abaa12147f
BLAKE2b-256 532cc684c6662e948ff1bb157fccc40ccb99e07176a34b845029f66313e6ab72

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp310-cp310-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.4 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.40.1-cp310-cp310-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 84ce9b1c7a59936382ffde7871978cddcda14098e5a76d961e204523e5c372fb
MD5 8ef12d312076131f4b9812dd2897baa7
BLAKE2b-256 42a6ee609a7ec912b6fde1249f8ce659dabbc72d8bc31e23a5db38a1a98b624f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 27.7 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.40.1-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 ff8f31111bb99d135ff296757dc81ab36c2dee54ed4bd429158a96da9807c316
MD5 217c17e640bdae944a3f644fe3102c4f
BLAKE2b-256 e7fba7430788e80cff1ec512ba6ca6d2159c0ed6293530b0d502d171e299872f

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp39-cp39-win32.whl
  • Upload date:
  • Size: 23.1 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.40.1-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 e74e7bec3235a1e1c9ad97d897a620c5007d0ed80c32c84c1d787e7daa17e4ec
MD5 f78e835dfde7f7550be37ba36b913661
BLAKE2b-256 eb9696d023c1f8500caa3309227e85b8490d79b0e655463b69b7949c3caa63c4

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 e2dbbb8424037ca287983b115a29adf37d806baf7e1bf4a67bd2cffb74e085ed
MD5 963a03953eb717875b8f1a9e7151f054
BLAKE2b-256 8ffee7bf3d2f4ac97fed467b2da1228754218676202f7f13bf17993f500d228e

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 9329b930d699699846623054121ed105fd0823ed2180906d3b3235d361645490
MD5 5856e9a8c85144bb93b3a42a5215cc29
BLAKE2b-256 08fb302c49e8fa5dc9f2f4a98a6783e303c77aae41a64c3b4b96f553281a20de

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp39-cp39-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.1 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.40.1-cp39-cp39-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 39a0b4d0088c01a469a5860d2e2d7a9b4e6a93c0f07eb26e71a9a872a8cadf8d
MD5 c4152933d58d3859a03ab2c5b25bb458
BLAKE2b-256 8227f3cd79c1304953fa788f7dcd69d8ab3075c8bfbd856a74aacdce435d3ef5

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.4 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.40.1-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 f643d15aacd0b0b0dc8b74b693822ba3f9a53fa63bc6a178c2dba7cc88f42144
MD5 45afbed68afc792f1459f9338322ebbb
BLAKE2b-256 72bd6a98be69dc2f45ee86c432eea1ad2564a3c2e3cbd896f59949d533710e6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 27.7 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.40.1-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 e44f854dc11559795bcdeaf12303759e56213d42dabbf91a5897aa2d8b033810
MD5 a96d9b480d2e8411fa37cda21837d1c8
BLAKE2b-256 7ef9778c54aa01b7af82933b20a046114f2fb0051de72cb5564b4b097e6543f9

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp38-cp38-win32.whl
  • Upload date:
  • Size: 23.1 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.40.1-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 96707ebad8b051bbb4fc40c65ef93b7eeee16643bd4d579a14d11578e4b7a647
MD5 1aad9f78a74a490c576f4d9fb82f27f1
BLAKE2b-256 8793966ae279dfe273e132d2e6594330a8f98d6f791df57713bd446dd85f9740

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Algorithm Hash digest
SHA256 cda71de10a1f48416309e408ea83dab5bf36058f83e13b86a2961defed265568
MD5 c5fa292d2e1b8b45a681a0de8144567d
BLAKE2b-256 0e369dd888e74f1fef4abffc9d421de22f729e2eb6a753e0df91a82a56ae9b08

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.40.1-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Algorithm Hash digest
SHA256 e35766e42acef0fe7d1c43169a8ffc327a47808fae6a067b049fe0e9bbf84dd5
MD5 609a09abe01de2dff20fad4c8c970791
BLAKE2b-256 3aa57e2d7898efca4a66c836f250c9cd2354214ce903cddd8c1e1a10822151a1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp38-cp38-macosx_11_0_arm64.whl
  • Upload date:
  • Size: 28.1 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.40.1-cp38-cp38-macosx_11_0_arm64.whl
Algorithm Hash digest
SHA256 84747289775d0874e506f907a4513db889471607db19b04de97d144047fec885
MD5 36eb3a4449634cd264682608d46778ac
BLAKE2b-256 ef8ba8a1f5ba8daa6d0fd9985abac425f02ef92a781e5b36b46e46a018c2c4f8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.40.1-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 30.4 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.40.1-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4a7525db121f2e699809b539b5308228854ccab6693ecb01b52c44a2f5647e20
MD5 3faaf52d576d207453f2563d26f4c86d
BLAKE2b-256 b84350bc2dbce04b020d635438f9cb026c56bfd3a01b40a9d1d2577521a25239

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