Skip to main content

lightweight wrapper around basic LLVM functionality

Project description

Travis CI Code Climate Coveralls.io Readthedocs.io

A lightweight LLVM python binding for writing JIT compilers

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.

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.

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 2.7 and Python 3.4 or greater.

As of version 0.23.0, llvmlite requires LLVM 6.0. It does not support earlier or later versions of LLVM.

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.27.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.27.0.tar.gz (103.8 kB view details)

Uploaded Source

Built Distributions

llvmlite-0.27.0-cp37-cp37m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.7m Windows x86-64

llvmlite-0.27.0-cp37-cp37m-win32.whl (8.7 MB view details)

Uploaded CPython 3.7m Windows x86

llvmlite-0.27.0-cp37-cp37m-manylinux1_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.7m

llvmlite-0.27.0-cp37-cp37m-manylinux1_i686.whl (17.2 MB view details)

Uploaded CPython 3.7m

llvmlite-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.7m macOS 10.9+ x86-64

llvmlite-0.27.0-cp36-cp36m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

llvmlite-0.27.0-cp36-cp36m-win32.whl (8.7 MB view details)

Uploaded CPython 3.6m Windows x86

llvmlite-0.27.0-cp36-cp36m-manylinux1_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.6m

llvmlite-0.27.0-cp36-cp36m-manylinux1_i686.whl (17.2 MB view details)

Uploaded CPython 3.6m

llvmlite-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.6m macOS 10.9+ x86-64

llvmlite-0.27.0-cp35-cp35m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.5m Windows x86-64

llvmlite-0.27.0-cp35-cp35m-win32.whl (8.7 MB view details)

Uploaded CPython 3.5m Windows x86

llvmlite-0.27.0-cp35-cp35m-manylinux1_x86_64.whl (16.8 MB view details)

Uploaded CPython 3.5m

llvmlite-0.27.0-cp35-cp35m-manylinux1_i686.whl (17.2 MB view details)

Uploaded CPython 3.5m

llvmlite-0.27.0-cp35-cp35m-macosx_10_9_x86_64.whl (13.2 MB view details)

Uploaded CPython 3.5m macOS 10.9+ x86-64

llvmlite-0.27.0-cp27-cp27mu-manylinux1_x86_64.whl (16.8 MB view details)

Uploaded CPython 2.7mu

llvmlite-0.27.0-cp27-cp27mu-manylinux1_i686.whl (17.2 MB view details)

Uploaded CPython 2.7mu

llvmlite-0.27.0-cp27-cp27m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 2.7m Windows x86-64

llvmlite-0.27.0-cp27-cp27m-win32.whl (8.7 MB view details)

Uploaded CPython 2.7m Windows x86

llvmlite-0.27.0-cp27-cp27m-macosx_10_9_x86_64.whl (13.2 MB view details)

Uploaded CPython 2.7m macOS 10.9+ x86-64

File details

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

File metadata

  • Download URL: llvmlite-0.27.0.tar.gz
  • Upload date:
  • Size: 103.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0.tar.gz
Algorithm Hash digest
SHA256 43aafc62a415d293fa2629b7fb2b114167b877dd1a4b00e9942c5b232a529bc9
MD5 746884a73ae8a83df279e5511efce524
BLAKE2b-256 d3598f0c20cd6197b3e535b6eb6513b2f1264c77fd343347e520dd4eab425962

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.27.0-cp37-cp37m-win_amd64.whl
  • Upload date:
  • Size: 11.3 MB
  • Tags: CPython 3.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 a5e45723b42a2318be243399816a6f3d1848474579a01124b07661280c131e9f
MD5 1cff57042117b120c6fbc245e6af5fed
BLAKE2b-256 38dd87a814ac5e0e5ded754c8c063afbc3bf19091b71220272bb3f1901d9501d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.27.0-cp37-cp37m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 5ff86f4b61af73ef1a23748f3c730dd8307487ca4acd6c1e0509164c77a42095
MD5 8525f70e59fefa2e8371dbb608d86830
BLAKE2b-256 bd0da70deb902a60003bdd957eec81d84dc7186088c6c784495b6a18e85ebb19

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 47bf2d974ef95aa36d3c06b9676fca576ce1b0ec6d772c38fc73ffc3155249d8
MD5 0ed23f661b8748f029bec2f937cb6262
BLAKE2b-256 f6741476fdaaf752b9940244f8964386712c80037ea1ac7acfd65425bdd55b3a

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp37-cp37m-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 96ebb264f386b087b2f860b83937828bccf3689b6e09a76f62de8a5b181d4e15
MD5 14ad593432535db51f267909236a673f
BLAKE2b-256 762de52d7174046e82598ac64e456ad449922445b49b629ba46a8d17f1f9562a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 0db9440d163cd63eb6d94213e33e7134bd015c3d4fb2ba92b70d42527ea8f30b
MD5 f7600a8960357e6c4c3d22008a621c19
BLAKE2b-256 947cee89ab62f4b34b8ec08b18d0e98990199877717d16510e0e33d860d9c288

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.27.0-cp36-cp36m-win_amd64.whl
  • Upload date:
  • Size: 11.3 MB
  • Tags: CPython 3.6m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 a1ec464c712182b57eb4181ba921b01f53dba0b5e64c95888c64c28ab9079c71
MD5 e6b6617471c55ec5b4ab32ef4786351f
BLAKE2b-256 e52bbdab28c186d56521c15f34a6dbc973e139aa1e3b2ca9d1cc13f954c65f2a

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.27.0-cp36-cp36m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.6m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 822eedc77c90a95f375a8ad61757bf341be81a499003433615f73319ec7b8f6e
MD5 e870e4d592efa116bf3ac52bd21e1683
BLAKE2b-256 320780be2d78f530102d03b9d260b62bed6c93e342d854ba692169f9f52900ad

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 32615100c7c9f3101d2608fab5c85afa559406f44bede135d450d3b79f28cf0e
MD5 5bd564c52f98039d2104e2cf079837c5
BLAKE2b-256 172fe7f053e8f2616eae980a9a5d352f6cfeff2abb5f88cc0530b23c61713afa

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp36-cp36m-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 a56788241d45913059ea954b3a442d56cc2511906d150aaf15c21e84494a1ae0
MD5 3c0e8be87b962e6f8c94436fec8b92c4
BLAKE2b-256 e381e0dfa2c78c6fc894e9dc1c4a68766de31c9b36b57950ac9f8d4ad729d139

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.6m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 3ff0024df6816404824a2a7f45b3849b8868005522571c4615f02c0e26336e20
MD5 0af94184ff6a35c63d79bb4abb7c4617
BLAKE2b-256 dd90db6bbb7ef346d29b03cf6021b8fae31cc657c84b71f2d36d06fbfd8564f5

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp35-cp35m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp35-cp35m-win_amd64.whl
  • Upload date:
  • Size: 11.3 MB
  • Tags: CPython 3.5m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 5d79c2f118834b72f8d0dd918be311ecd8cac4dee69a07316e214cadea9d2fc6
MD5 f00b728537e2da6f5ddd9c331fc29897
BLAKE2b-256 12d837067c3d74bf8591bcbf39c7d75e1095e010641506593a7f39062f93e667

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp35-cp35m-win32.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp35-cp35m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 3.5m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 0dcdabadd686b650072090fc5fe925dfcfaf1d451c801b38fc6beefc7ec0761c
MD5 f507545fc5d9d3a76fb43f39991b4b17
BLAKE2b-256 71074d3a64be164cef67a46e7609ffb5ed0782d78ea25b9f29b04bc919a848f0

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 d07b0caa5c79b36de6d28dadd0364434e360e2e97cc02d6ad0ca60e54b8f89f0
MD5 7738c37b470ec3a1b685533207466952
BLAKE2b-256 76566808629ea05c592639abb04b4a8489d90badfd1c2bf2d618b188ba7d4721

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp35-cp35m-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 fe5b97ace13056ac1640204eaf1585ab35b14975b4257395433aed50f16cfd9f
MD5 4ec078219e86068021bab9350d6a9f94
BLAKE2b-256 c348478443940d91dcd6b9de499031e16d30f8999adb5c1643bd1b7ea9a8359b

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp35-cp35m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp35-cp35m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 3.5m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 8b18e9d8ef2ba0213e45ded927e81ff9a7776f15f7075e4084d76cfd55d60dea
MD5 ea6e96f75401589129fc3c5896480ab2
BLAKE2b-256 3d3ac86c350076bd693cf30878e8625b340f8f36b93fb32ca1d900db7612bae7

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 16.8 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 fad96e1c91c82f0541a636b2918379009a79ea549218c32591222b1719e75aaf
MD5 1c560e6444262155c1ceeed6dfa7ba26
BLAKE2b-256 68e770878c7021b72aaa57f258f8abe4c0e1d3f29d0f3cda956ceff162c6cff5

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp27-cp27mu-manylinux1_i686.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 17.2 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 cdc0c7441a46e49c0e68ec9ca247d2f140863bc63f5992900137ce1aca5a63e1
MD5 536aaa717eafcd9a01dfeac2f3d5dfa1
BLAKE2b-256 fcf87dbaac13363ba11bf08827db14b22c78ccbebd7d6b2f47fc3fb68ace5506

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp27-cp27m-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp27-cp27m-win_amd64.whl
  • Upload date:
  • Size: 11.3 MB
  • Tags: CPython 2.7m, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 7d6c818d63ea291e3004c16ffddf252fd316d1593f1f37f49234ab7a5f228117
MD5 89d143ab321afd765526877e34e965ef
BLAKE2b-256 cba2ac9186b8a835b31b914e5055b11b8c8c2f761b9278026e9319255fd4a2e0

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp27-cp27m-win32.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp27-cp27m-win32.whl
  • Upload date:
  • Size: 8.7 MB
  • Tags: CPython 2.7m, Windows x86
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 fcef99dd51219f6732b792f9fec0f99cea2241dc36ba56d33f7e1500e2c893f4
MD5 a07c9e353649942a3b015ec0d3d6b9eb
BLAKE2b-256 5d5ad698b3ea220bd3d7570acafb2267bd36d8989e915e1a15080ce0f66976fe

See more details on using hashes here.

File details

Details for the file llvmlite-0.27.0-cp27-cp27m-macosx_10_9_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.27.0-cp27-cp27m-macosx_10_9_x86_64.whl
  • Upload date:
  • Size: 13.2 MB
  • Tags: CPython 2.7m, macOS 10.9+ x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/39.0.1 requests-toolbelt/0.8.0 tqdm/4.26.0 CPython/3.6.7

File hashes

Hashes for llvmlite-0.27.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 d85b50eb86b16f0f2232277edae3d520e22bc15f141c0cab41aede24a5ab63f7
MD5 e133cc0fb17fb435e45299d622088760
BLAKE2b-256 48a63fd3f0dfc3462830ce2d5dcc2fcff020603417d5429902f04a31c5bc5c57

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