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).

llvmpy Compatibility Layer

The llvmlite.llvmpy namespace provides a minimal llvmpy compatibility layer.

Compatibility

llvmlite works with Python 3.6 and greater.

As of version 0.34.0, llvmlite requires LLVM 10.0.x. on all architectures except aarch64 which requires LLVM 9.0.x due to: https://bugs.llvm.org/show_bug.cgi?id=46996

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.34.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.36.0.tar.gz (126.2 kB view details)

Uploaded Source

Built Distributions

llvmlite-0.36.0-cp39-cp39-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.9 Windows x86-64

llvmlite-0.36.0-cp39-cp39-win32.whl (13.0 MB view details)

Uploaded CPython 3.9 Windows x86

llvmlite-0.36.0-cp39-cp39-manylinux2010_x86_64.whl (25.3 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ x86-64

llvmlite-0.36.0-cp39-cp39-manylinux2010_i686.whl (27.4 MB view details)

Uploaded CPython 3.9 manylinux: glibc 2.12+ i686

llvmlite-0.36.0-cp39-cp39-macosx_10_9_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.9 macOS 10.9+ x86-64

llvmlite-0.36.0-cp38-cp38-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.8 Windows x86-64

llvmlite-0.36.0-cp38-cp38-win32.whl (13.0 MB view details)

Uploaded CPython 3.8 Windows x86

llvmlite-0.36.0-cp38-cp38-manylinux2010_x86_64.whl (25.3 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ x86-64

llvmlite-0.36.0-cp38-cp38-manylinux2010_i686.whl (27.4 MB view details)

Uploaded CPython 3.8 manylinux: glibc 2.12+ i686

llvmlite-0.36.0-cp38-cp38-macosx_10_9_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.8 macOS 10.9+ x86-64

llvmlite-0.36.0-cp37-cp37m-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.7m Windows x86-64

llvmlite-0.36.0-cp37-cp37m-win32.whl (13.0 MB view details)

Uploaded CPython 3.7m Windows x86

llvmlite-0.36.0-cp37-cp37m-manylinux2010_x86_64.whl (25.3 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ x86-64

llvmlite-0.36.0-cp37-cp37m-manylinux2010_i686.whl (27.4 MB view details)

Uploaded CPython 3.7m manylinux: glibc 2.12+ i686

llvmlite-0.36.0-cp37-cp37m-macosx_10_9_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

llvmlite-0.36.0-cp36-cp36m-win_amd64.whl (16.0 MB view details)

Uploaded CPython 3.6m Windows x86-64

llvmlite-0.36.0-cp36-cp36m-win32.whl (13.0 MB view details)

Uploaded CPython 3.6m Windows x86

llvmlite-0.36.0-cp36-cp36m-manylinux2010_x86_64.whl (25.3 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ x86-64

llvmlite-0.36.0-cp36-cp36m-manylinux2010_i686.whl (27.4 MB view details)

Uploaded CPython 3.6m manylinux: glibc 2.12+ i686

llvmlite-0.36.0-cp36-cp36m-macosx_10_9_x86_64.whl (18.5 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: llvmlite-0.36.0.tar.gz
  • Upload date:
  • Size: 126.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/3.3.0 pkginfo/1.7.0 requests/2.25.1 setuptools/52.0.0.post20210125 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.2

File hashes

Hashes for llvmlite-0.36.0.tar.gz
Algorithm Hash digest
SHA256 765128fdf5f149ed0b889ffbe2b05eb1717f8e20a5c87fa2b4018fbcce0fcfc9
MD5 0af63891993526bee21eaa408ce56cfe
BLAKE2b-256 19666b2c49c7c68da48d17059882fdb9ad9ac9e5ac3f22b00874d7996e3c44a8

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.36.0-cp39-cp39-win_amd64.whl
  • Upload date:
  • Size: 16.0 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.36.0-cp39-cp39-win_amd64.whl
Algorithm Hash digest
SHA256 1dee416ea49fd338c74ec15c0c013e5273b0961528169af06ff90772614f7f6c
MD5 5aa062fb8a99c38b7a14df38c4a6d02e
BLAKE2b-256 b7abcf1bc85ae2aa7ce35c3bdeb34084b805ac5d2c9e49c1ac4a6eff20bb91dc

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.36.0-cp39-cp39-win32.whl
  • Upload date:
  • Size: 13.0 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.36.0-cp39-cp39-win32.whl
Algorithm Hash digest
SHA256 ff52fb9c2be66b95b0e67d56fce11038397e5be1ea410ee53f5f1175fdbb107a
MD5 174e98e7237895360b408147719e6f4e
BLAKE2b-256 8bf573b92c97c5c1806103598ad121a41d53a9e975f719ae7d58298fcf7e25f7

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp39-cp39-manylinux2010_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp39-cp39-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ 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.36.0-cp39-cp39-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 5a6548b4899facb182145147185e9166c69826fb424895f227e6b7cf924a8da1
MD5 addad831d62f55c6498d1d9240fda867
BLAKE2b-256 21e4bd58362e7613bce9a570278352832289b2a9f1da48e8c22e1a2f883a2167

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp39-cp39-manylinux2010_i686.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp39-cp39-manylinux2010_i686.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.9, manylinux: glibc 2.12+ i686
  • 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.36.0-cp39-cp39-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 705f0323d931684428bb3451549603299bb5e17dd60fb979d67c3807de0debc1
MD5 aaf422838d492e0143f63e1ecb6fa562
BLAKE2b-256 c28bb9a9e00ff28f8428687f287135853babbf6b8af3d695f8888e58a0312422

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.36.0-cp39-cp39-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 18.5 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.36.0-cp39-cp39-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 6a3abc8a8889aeb06bf9c4a7e5df5bc7bb1aa0aedd91a599813809abeec80b5a
MD5 d18a76908a3febc7b3c9b49533f84d6b
BLAKE2b-256 90a9ec0175e6c2d519fc450086ac60ffb1bdfad4a66e2bcc68f8275ec4bd89d4

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.36.0-cp38-cp38-win_amd64.whl
  • Upload date:
  • Size: 16.0 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.36.0-cp38-cp38-win_amd64.whl
Algorithm Hash digest
SHA256 f608bae781b2d343e15e080c546468c5a6f35f57f0446923ea198dd21f23757e
MD5 3e47f49e97a854d0b67bda923962cda5
BLAKE2b-256 6e01e30f3a93e4198f58b5bbcbdcdfce0b56956d2b8d99988f0db58fab23d1ed

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.36.0-cp38-cp38-win32.whl
  • Upload date:
  • Size: 13.0 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.36.0-cp38-cp38-win32.whl
Algorithm Hash digest
SHA256 50b1828bde514b31431b2bba1aa20b387f5625b81ad6e12fede430a04645e47a
MD5 658c2c60e841c3d47c995661630b3205
BLAKE2b-256 6dd47404cdfdf3aef99acdf38660822f198886ef9b02a2c791bb182a1cfa9dcb

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp38-cp38-manylinux2010_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp38-cp38-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ 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.36.0-cp38-cp38-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7db4b0eef93125af1c4092c64a3c73c7dc904101117ef53f8d78a1a499b8d5f4
MD5 34861976da602fffb706394aa845eb74
BLAKE2b-256 287ca0b7cc59f4c2d46347f46a2aa687cb96d3fe45a6750cd1fc7e69541a5462

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp38-cp38-manylinux2010_i686.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp38-cp38-manylinux2010_i686.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.8, manylinux: glibc 2.12+ i686
  • 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.36.0-cp38-cp38-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 048a7c117641c9be87b90005684e64a6f33ea0897ebab1df8a01214a10d6e79a
MD5 41a0ff9fc2042290c4dc23f1f176798e
BLAKE2b-256 56898fcee8d1a5a32c14aef03ed81a1dd53acc21361a12bd3db35d92757f9acb

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.36.0-cp38-cp38-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 18.5 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.36.0-cp38-cp38-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 b3a77e46e6053e2a86e607e87b97651dda81e619febb914824a927bff4e88737
MD5 38b75fb665101024d54a70995908924a
BLAKE2b-256 f5663d192cb5db54f56e1742c92b705a3b1cd1879b62a07659df0cea28f0c2f8

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp37-cp37m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.7m, 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.36.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 3b17fc4b0dd17bd29d7297d054e2915fad535889907c3f65232ee21f483447c5
MD5 1cb52e4c090f9d6b2bbd24e0a9387113
BLAKE2b-256 6412d2ab8618b3e68b7121de9ed743aee9b737777aa219586f71f3e11bb706aa

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp37-cp37m-win32.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.7m, 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.36.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 dbedff0f6d417b374253a6bab39aa4b5364f1caab30c06ba8726904776fcf1cb
MD5 9cc9f2802aaa827536066e7b5c54d9b6
BLAKE2b-256 defff9df242f68e157e0254e5e3c2f4a34bda9c9c119c6fde310cad9c5fa4690

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp37-cp37m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp37-cp37m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ 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.36.0-cp37-cp37m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 1ce5bc0a638d874a08d4222be0a7e48e5df305d094c2ff8dec525ef32b581551
MD5 a15fc1e42d5fa7ed705cc83ec8865d8e
BLAKE2b-256 54252b4015e2b0c3be2efa6870cf2cf2bd969dd0e5f937476fc13c102209df32

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp37-cp37m-manylinux2010_i686.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp37-cp37m-manylinux2010_i686.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.7m, manylinux: glibc 2.12+ i686
  • 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.36.0-cp37-cp37m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 9dad7e4bb042492914292aea3f4172eca84db731f9478250240955aedba95e08
MD5 2b1beeaa7181385f3daad1b6e734af28
BLAKE2b-256 90ca62c3e59fc407b15447ab1aa9f407b740dff9aa854267834923ba98057a6d

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp37-cp37m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.7m, 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.36.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 7c4e7066447305d5095d0b0a9cae7b835d2f0fde143456b3124110eab0856426
MD5 88424a82c8b99197b9a45eb5cf075c0d
BLAKE2b-256 419c57ccba5b72ced01ea42299a19cf828e7cb4decc242fe6444712b2822e789

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp36-cp36m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 16.0 MB
  • Tags: CPython 3.6m, 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.36.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 d1fdd63c371626c25ad834e1c6297eb76cf2f093a40dbb401a87b6476ab4e34e
MD5 bdef6335254599b867a4dcf929815304
BLAKE2b-256 34c460cd9ca9e67b9b45bd218fd78199deed0e5a17b0b6e4589172c0eda29e4d

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp36-cp36m-win32.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 13.0 MB
  • Tags: CPython 3.6m, 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.36.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 05f807209a360d39526d98141b6f281b9c7c771c77a4d1fc22002440642c8de2
MD5 0fece0eacdb3873e4fd0353d8fe2f77a
BLAKE2b-256 04ccb607b0768f43a87d5507516f41fa19943936a4aa27861b69bbe688e47d20

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp36-cp36m-manylinux2010_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp36-cp36m-manylinux2010_x86_64.whl
  • Upload date:
  • Size: 25.3 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ 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.36.0-cp36-cp36m-manylinux2010_x86_64.whl
Algorithm Hash digest
SHA256 7768658646c418b9b3beccb7044277a608bc8c62b82a85e73c7e5c065e4157c2
MD5 0e544b92e67f021391ed25b0595ad8c5
BLAKE2b-256 4d5a707cc7e072d71bc19869d093e5cf9b7be98cb42d2398489465474d007ce8

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp36-cp36m-manylinux2010_i686.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp36-cp36m-manylinux2010_i686.whl
  • Upload date:
  • Size: 27.4 MB
  • Tags: CPython 3.6m, manylinux: glibc 2.12+ i686
  • 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.36.0-cp36-cp36m-manylinux2010_i686.whl
Algorithm Hash digest
SHA256 f7918dbac02b1ebbfd7302ad8e8307d7877ab57d782d5f04b70ff9696b53c21b
MD5 b7389e74ccc256fb12f868a271be40a7
BLAKE2b-256 68cacf6b1ba1781402632be91fbddd5a71dc1e75d79f0b2fae28b92f8ff4fa5d

See more details on using hashes here.

File details

Details for the file llvmlite-0.36.0-cp36-cp36m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.36.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 18.5 MB
  • Tags: CPython 3.6m, 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.36.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 cc0f9b9644b4ab0e4a5edb17f1531d791630c88858220d3cc688d6edf10da100
MD5 14fc8a73b7cfcd2e422b40d81e2413c0
BLAKE2b-256 f074f509fe2ada2875db48e09a4bbcc8a304a6d908adab443308768d1963de7c

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