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

Uploaded Source

Built Distributions

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

Uploaded CPython 3.7m Windows x86-64

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

Uploaded CPython 3.7m Windows x86

llvmlite-0.28.0-cp37-cp37m-manylinux1_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.7m

llvmlite-0.28.0-cp37-cp37m-manylinux1_i686.whl (17.5 MB view details)

Uploaded CPython 3.7m

llvmlite-0.28.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.28.0-cp36-cp36m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.6m Windows x86-64

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

Uploaded CPython 3.6m Windows x86

llvmlite-0.28.0-cp36-cp36m-manylinux1_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.6m

llvmlite-0.28.0-cp36-cp36m-manylinux1_i686.whl (17.5 MB view details)

Uploaded CPython 3.6m

llvmlite-0.28.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.28.0-cp35-cp35m-win_amd64.whl (11.3 MB view details)

Uploaded CPython 3.5m Windows x86-64

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

Uploaded CPython 3.5m Windows x86

llvmlite-0.28.0-cp35-cp35m-manylinux1_x86_64.whl (17.1 MB view details)

Uploaded CPython 3.5m

llvmlite-0.28.0-cp35-cp35m-manylinux1_i686.whl (17.5 MB view details)

Uploaded CPython 3.5m

llvmlite-0.28.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.28.0-cp27-cp27mu-manylinux1_x86_64.whl (17.1 MB view details)

Uploaded CPython 2.7mu

llvmlite-0.28.0-cp27-cp27mu-manylinux1_i686.whl (17.5 MB view details)

Uploaded CPython 2.7mu

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

Uploaded CPython 2.7m Windows x86-64

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

Uploaded CPython 2.7m Windows x86

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

Uploaded CPython 2.7m macOS 10.9+ x86-64

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

Uploaded CPython 3.7m

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

Uploaded CPython 3.6m

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

Uploaded CPython 3.5m

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

Uploaded CPython 2.7mu

File details

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

File metadata

  • Download URL: llvmlite-0.28.0.tar.gz
  • Upload date:
  • Size: 106.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0.tar.gz
Algorithm Hash digest
SHA256 a189c0cd8a80e8bbd002a1e422b1efcc2bceab2cb63b961f2d03ab711c3ba45b
MD5 2e0b4586a8c8c1981ce49e837bf70781
BLAKE2b-256 85805fa60aee0b893ca0949e821ec2eb207dcee0ec98c862f6b97f851dda0275

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp37-cp37m-win_amd64.whl
Algorithm Hash digest
SHA256 07ed7e38be53611dce7daa36274469dd99995b149c361efc9f509aa8569c2088
MD5 4d411472b13357e260221edd4420153f
BLAKE2b-256 a4af437bb1822e86002e59cf552f74c5963edb8b1edcfba902a7868b16558bef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp37-cp37m-win32.whl
Algorithm Hash digest
SHA256 4e68173ab3be4654ecdbf9238347e23005405f2f5eb6a4e9b48f6e4f0d5a0e50
MD5 16ead372cb40d1d9afa1123f2144c06d
BLAKE2b-256 140d53d3b429f56ca5b53b8d5ba0b7ced1b7a5f731a90b0f1b89c69af1a99f6d

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp37-cp37m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 ddc7c4e4dd7851f845a3e4044ab4a83a3b6c46462f002b6c8c06bdb5d4a70a9f
MD5 6588594ad55a67f248d31712a716654d
BLAKE2b-256 2274655a7c6a2a8b9f96ec3f16891e4813aad673e30e6d560a500d50281589ef

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp37-cp37m-manylinux1_i686.whl
  • Upload date:
  • Size: 17.5 MB
  • Tags: CPython 3.7m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp37-cp37m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 035d55963fc45e0074aa0e5659dd2f37c1ebaabe2f803404e4b2857a5c8b692c
MD5 746127c2493947a8437bfe0c324ebc72
BLAKE2b-256 840e53353fce0895b642a1ac279a43deeae01956e5cbe30ef27d0edd4e745469

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp37-cp37m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4c337e847a0f3f491361cb7cc90835b17fbe898994d175e4c8f444fbcf2dffd3
MD5 c0a3cff5cb4ca560cf25e5fe261451ea
BLAKE2b-256 cfbd16a7262976461bd2aaa82ebd2e7ebf6b303dc92abd0f4dbd0bd374994a6b

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp36-cp36m-win_amd64.whl
Algorithm Hash digest
SHA256 5112f5f7072d3d5c4615cb9f173701a42f3883d26f17ec1b4d8a442f80caa14a
MD5 64ee8aa1206f659693e0d95f8ca2d7dc
BLAKE2b-256 6db0006917794be1285869dc93b4f50a100feb5c52f06e2eef88f0378a616385

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp36-cp36m-win32.whl
Algorithm Hash digest
SHA256 3e7c020931bca3afb9aaf0a768abee7e689bdede56b1c832cef17d6c3a7d86a1
MD5 9d4a3645c0979ffd4cd80f5c22bd3c94
BLAKE2b-256 63da71d63c8baa3c1fd5524c2b47f49d771b39e5a6ce6f9d50f573cab534d4ca

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp36-cp36m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0dc9bd9e1ec44768dae990d026f9e25467a286d534550bf7185dbb0ddde9850a
MD5 10191b37db21e01beb0ee5895f12f85f
BLAKE2b-256 a1d630e5b08c2a37c445f8c72dbfc080b2ed1724b740efbe2fed963053756a68

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp36-cp36m-manylinux1_i686.whl
  • Upload date:
  • Size: 17.5 MB
  • Tags: CPython 3.6m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp36-cp36m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 dde4b5e4298976bd721974657ce76178176ea5e55437346b0d52503c0acb5db1
MD5 90ed888ae45fd95306646dcbb22d0a8f
BLAKE2b-256 c08005c28794b222b36924d907690a749222f2b6c8786056a0b7deed650ed169

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp36-cp36m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 99bfe5d20344dce92d159f4cdaaac953a1e50b13aaeeab72c4c243bd60ce5819
MD5 726b42bef852bbea410c66ec4dd8d749
BLAKE2b-256 e254151f408d4d3abbc4f705e9165d10983833976ab76eac37574b2ed0235039

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp35-cp35m-win_amd64.whl
Algorithm Hash digest
SHA256 36c280ad6fdfa79e69853ed706a5007ad3d3b9fcc6c4217aca0610b93f25a907
MD5 f2e6e91fd70abf4919231b868c45479a
BLAKE2b-256 28f98b134aab6183c8874870859693d918cf143d4126aa0c40c8dd0057921c82

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp35-cp35m-win32.whl
Algorithm Hash digest
SHA256 59c6dcc8a37fee7703b444018d2c2929dce854f15c9a7db868a02ebe2f2e9302
MD5 4e654650fe5a9cfd8706d663f7df4381
BLAKE2b-256 d7706b559747c371ffe3baa4c4003e739aaa5909f976f3072aabcc62af556dc1

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp35-cp35m-manylinux1_x86_64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 28b24ab2e95f80b2c4db9f97dd21b1630c35b427e429ac13b841f190146e420d
MD5 7cef11f191acb58c5149bfad3ee9fd01
BLAKE2b-256 d9203086d4970454dc95bc3b702086d2cf6410ed5629bc70894d8c147cf98b9c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp35-cp35m-manylinux1_i686.whl
  • Upload date:
  • Size: 17.5 MB
  • Tags: CPython 3.5m
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp35-cp35m-manylinux1_i686.whl
Algorithm Hash digest
SHA256 b0decf92f8de3fa2125e7b4822d5460488cfdf0a18b81b482c4865a17e8980af
MD5 108739fdcde2547d10d120ba405171c9
BLAKE2b-256 0e8760f79dcae050f636e88817d188cff62d29700c7c9874eaebec8c47dbfc24

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp35-cp35m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 e91a044a996197c67dd8f73c02ab332c6deca090e3f6152ef0849e5c03e8ca21
MD5 da6537b146b178a9edbe7d2ab2acda83
BLAKE2b-256 6880970a66bc62bcae837f4e5a023b350bfc713456c82c2042a9539fe3039733

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp27-cp27mu-manylinux1_x86_64.whl
  • Upload date:
  • Size: 17.1 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 82f42b16fdea19d0b166bfe2f0b01cab13deec9cb3c47b70a20c870968d0dbe2
MD5 4ad41048e28167b63486edb1f0f40d56
BLAKE2b-256 4885b33499d954d252584278e88f51bc15b959599eb12f1246977ee85c148179

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.0-cp27-cp27mu-manylinux1_i686.whl
  • Upload date:
  • Size: 17.5 MB
  • Tags: CPython 2.7mu
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp27-cp27mu-manylinux1_i686.whl
Algorithm Hash digest
SHA256 51fb457dcda0df1cf07ccc89278f9408c4a10504d2d64e44a354e1cb97c96c0f
MD5 f1c00bc8a7914303654a333f8f7f4508
BLAKE2b-256 eea410013d9773e83b8440c744dfd35b521d8572b3cc89c0863d6e3ecdb62508

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp27-cp27m-win_amd64.whl
Algorithm Hash digest
SHA256 4f9a3bac281806fc8d0f06c339ad7f295637edcb2a13621853e024941d53bd0e
MD5 99311120c4f113cd074df094c3a8b346
BLAKE2b-256 f2b3b727b0dd51bd596041bde2e62cc717860abbacf5befb73070dad40bfe259

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp27-cp27m-win32.whl
Algorithm Hash digest
SHA256 55561dffb145356dc1633f3cf325c11675e2d12b23adc6c6c3b4ef268d28d50f
MD5 c06c85f7e4938fdbc72ddcb6d00b23c9
BLAKE2b-256 ff270d867c047e22152a30ecdc7c288ea38aa2f60baa1c6a005c7724d14d9c13

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.28.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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-cp27-cp27m-macosx_10_9_x86_64.whl
Algorithm Hash digest
SHA256 4039e6350b22de27576405693b2fe72e8e3f63175f1a6b7f60a97d2235f05ab8
MD5 ba7df9de053ba89268e5291b354fa3cd
BLAKE2b-256 babd4eae8f9d97d38d3c5f9dabb54a258cf4490b302c7b80bc9b5b305b07092a

See more details on using hashes here.

File details

Details for the file llvmlite-0.28.0-1-cp37-cp37m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.28.0-1-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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-1-cp37-cp37m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 965fd21608977899bd0b9d03b7ce20df5d884753fb50aa34c84cfe11579df7a8
MD5 f1799c47f721b0655a8f5d42fdbcad6d
BLAKE2b-256 5068cd4617d21394addb479722b6c095828e20836ff19873136b4310671e9da2

See more details on using hashes here.

File details

Details for the file llvmlite-0.28.0-1-cp36-cp36m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.28.0-1-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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-1-cp36-cp36m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 0c5765dca193710ae6bb025961515126cc5ff50121f7eb9b092c422fbc889636
MD5 145fbb53ebc081144a3d775f0908f5a4
BLAKE2b-256 b5f36d7f49db45df0276166f99723aa10310862a3783556cd284793da478afed

See more details on using hashes here.

File details

Details for the file llvmlite-0.28.0-1-cp35-cp35m-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.28.0-1-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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-1-cp35-cp35m-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 2a0703efaf5e0abce62effd200facb5c491e8452471d40866e0afe4f9698261b
MD5 41a71b4f6c607c1f00a89fa61e81e13f
BLAKE2b-256 d10ed0ed03146d441ce92c62367c29c0e77c8b1e78f9a17c77d9015b959cff02

See more details on using hashes here.

File details

Details for the file llvmlite-0.28.0-1-cp27-cp27mu-manylinux1_x86_64.whl.

File metadata

  • Download URL: llvmlite-0.28.0-1-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.12.1 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.7.3 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2

File hashes

Hashes for llvmlite-0.28.0-1-cp27-cp27mu-manylinux1_x86_64.whl
Algorithm Hash digest
SHA256 1770d6b4a234cbe87f58ce32bde5d83a7890ad7f1a3cf767baae07baba0f7673
MD5 5ecda86d4835aae6f6d326c88d938e17
BLAKE2b-256 ec12696ffbcefbbf4f701bccb4426c37030150bc54cad57a9a719386ab80eedf

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