Skip to main content

lightweight wrapper around basic LLVM functionality

Project description

Azure Pipelines 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 has been tested with Python 3.10 – 3.14 and is likely to work with greater versions.

As of version 0.48.0, llvmlite requires LLVM 22.x.x on all architectures

Historical compatibility table:

llvmlite versions

compatible LLVM versions

0.48.0 - ……

22.x.x

0.45.0 - 0.47.x

20.x.x

0.44.0

15.x.x and 16.x.x

0.41.0 - 0.43.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


Release history Release notifications | RSS feed

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

Uploaded Source

Built Distributions

If you're not sure about the file name format, learn more about wheel file names.

llvmlite-0.48.0-cp314-cp314t-win_amd64.whl (43.0 MB view details)

Uploaded CPython 3.14tWindows x86-64

llvmlite-0.48.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (58.3 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.48.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (59.9 MB view details)

Uploaded CPython 3.14tmanylinux: glibc 2.17+ x86-64

llvmlite-0.48.0-cp314-cp314t-macosx_12_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.14tmacOS 12.0+ ARM64

llvmlite-0.48.0-cp314-cp314-win_amd64.whl (43.0 MB view details)

Uploaded CPython 3.14Windows x86-64

llvmlite-0.48.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (58.3 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.48.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (59.9 MB view details)

Uploaded CPython 3.14manylinux: glibc 2.17+ x86-64

llvmlite-0.48.0-cp314-cp314-macosx_12_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.14macOS 12.0+ ARM64

llvmlite-0.48.0-cp313-cp313-win_amd64.whl (41.9 MB view details)

Uploaded CPython 3.13Windows x86-64

llvmlite-0.48.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (58.3 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.48.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (59.9 MB view details)

Uploaded CPython 3.13manylinux: glibc 2.17+ x86-64

llvmlite-0.48.0-cp313-cp313-macosx_12_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.13macOS 12.0+ ARM64

llvmlite-0.48.0-cp312-cp312-win_amd64.whl (41.9 MB view details)

Uploaded CPython 3.12Windows x86-64

llvmlite-0.48.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (58.3 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.48.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (59.9 MB view details)

Uploaded CPython 3.12manylinux: glibc 2.17+ x86-64

llvmlite-0.48.0-cp312-cp312-macosx_12_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.12macOS 12.0+ ARM64

llvmlite-0.48.0-cp311-cp311-win_amd64.whl (41.9 MB view details)

Uploaded CPython 3.11Windows x86-64

llvmlite-0.48.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (58.3 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.48.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (59.9 MB view details)

Uploaded CPython 3.11manylinux: glibc 2.17+ x86-64

llvmlite-0.48.0-cp311-cp311-macosx_12_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.11macOS 12.0+ ARM64

llvmlite-0.48.0-cp310-cp310-win_amd64.whl (41.9 MB view details)

Uploaded CPython 3.10Windows x86-64

llvmlite-0.48.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl (58.3 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.27+ ARM64manylinux: glibc 2.28+ ARM64

llvmlite-0.48.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl (59.9 MB view details)

Uploaded CPython 3.10manylinux: glibc 2.17+ x86-64

llvmlite-0.48.0-cp310-cp310-macosx_12_0_arm64.whl (40.5 MB view details)

Uploaded CPython 3.10macOS 12.0+ ARM64

File details

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

File metadata

  • Download URL: llvmlite-0.48.0.tar.gz
  • Upload date:
  • Size: 184.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0.tar.gz
Algorithm Hash digest
SHA256 543b19f9ef8f3c7c60d1468191e4ee1b1537bf9f8a3d56f64c0ddd98de92edd2
MD5 a329fb58a5c427cc03ec46306c63eff7
BLAKE2b-256 dca0acc8ffcd5bdc63df0097e22c719bfcd61b604358343089313a8aebbb24ab

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314t-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.48.0-cp314-cp314t-win_amd64.whl
  • Upload date:
  • Size: 43.0 MB
  • Tags: CPython 3.14t, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314t-win_amd64.whl
Algorithm Hash digest
SHA256 d0b3c61aac83b42fb48cc96bffbf57c81b82b2aa92276b7ed6420c814629a99a
MD5 71ed6442ae470067454c27f9e739a7f2
BLAKE2b-256 db41b96f440c7df5ebba07872cad4e30fbc3560387755b1ea0b629adb76d5ca8

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314t-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 054aa7d46595935565f276cf0c1659b4f10929c996dd4a606875fae26fba2a23
MD5 0c583791e94d7dd562b3a8ff6f065998
BLAKE2b-256 1acf7aac11a1f1c7ec54b60c7f6814e87561fb6b55b2f290455d7941eb113420

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314t-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 1d9f952dff6c350c529997423d4fa43abae9722a884ac7ffafc37a3af676e7db
MD5 11f7350a7188d6054356816ae70d168e
BLAKE2b-256 2798a29133b4728671a175f7d616fab8b1c6e1d8c269d1523581d3160697bfb1

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314t-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314t-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 7a5c413317050a1d67c34708bde97707f9b2257ef1017f7532d21fe7d9a9ff30
MD5 f3f0e0fec94a301b48544d7af33261ed
BLAKE2b-256 94e37a93e09c9f94e637ca90209ceef0334a9a1d45b0bdb7c92ff922d25d6187

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.48.0-cp314-cp314-win_amd64.whl
  • Upload date:
  • Size: 43.0 MB
  • Tags: CPython 3.14, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314-win_amd64.whl
Algorithm Hash digest
SHA256 966dcab0a598e2bd8fb5f2cc082cf7b07bae564fc485a3a8692393caf986facf
MD5 24995d4bd64e5354cc7978342ba1ebda
BLAKE2b-256 c92d6a5171fb7236ac0895e1a02ccba3735bf291e8597239aa6421894d3c0ba8

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 37d66fae72802175b0bfe1ea06e624b51e2d7aee6c3c34bbd09739b8f88e8e0b
MD5 e39bdf422fffa310429e5a4c543138fd
BLAKE2b-256 f7c3470b8c4ff9ae2db2f9cf5c3e73de76ed908a32788ae9eb5602d43e6a476b

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 05f0103c8f2f96a37441337e3643863c01b8e83e530aff38960dcb383c54a065
MD5 e8915b81f1ae967770ceabcb6cc818b6
BLAKE2b-256 d6e105b50692b647cac3c18200ac485b04f342f00ed173c9cc46767274469a15

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp314-cp314-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp314-cp314-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 321f1ac39b462603f0b589751aecf2d237d056f6d005749c1752b6f23ec3f074
MD5 da0e9194eba98b47afbf8d8df2737b98
BLAKE2b-256 8d8e8170f2e0c217f88069c333d85bb976e536b332aecfcce606ddbdb249385f

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp313-cp313-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.48.0-cp313-cp313-win_amd64.whl
  • Upload date:
  • Size: 41.9 MB
  • Tags: CPython 3.13, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0-cp313-cp313-win_amd64.whl
Algorithm Hash digest
SHA256 91c7e24e74cde3f02b88aa5acca678373f9e069f3b98531b3dbb3a142d9d10bb
MD5 f58f263adfb2e8842e6d25b2d7bfe927
BLAKE2b-256 17975a430055d1838cf1fb7a01cfa943300f5e4c026fc6333a522c5e4a03b0c1

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp313-cp313-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 2fe5cb59b2063bfa039dcb8ca6481c0181bf552f340d10dcf61d7996a665556e
MD5 6e3383df8189b8b863be1096b07d905f
BLAKE2b-256 705e7b3e20d64650ca3c80af0cdb664ec4b575ec83d9d4dd05bea8bd31f9bbb6

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp313-cp313-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 8761b9e522f55207e24424fcd98370289eec2710bf8e915c82d1053f642450dc
MD5 bad9532dd456820ad088bce2bd56e292
BLAKE2b-256 1b4a90715fa12006d681270b08d881195b6fab3ec39572e048764a1f7f59fed7

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp313-cp313-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp313-cp313-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 a83a99ef0c05b4ccddf9b6218ed9fe84b653a0caf7c1d9dbe148d6d16c67f518
MD5 904a6535cb8e4b872e527f7525daa383
BLAKE2b-256 9c23fe9316d14626b42c73ef0b502e724705a6ee9450afe53759c0a99c37c2d7

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp312-cp312-win_amd64.whl.

File metadata

  • Download URL: llvmlite-0.48.0-cp312-cp312-win_amd64.whl
  • Upload date:
  • Size: 41.9 MB
  • Tags: CPython 3.12, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0-cp312-cp312-win_amd64.whl
Algorithm Hash digest
SHA256 d45c7541a80934ec6d8ab0defe67439494ecd2193cbf852a44ba827808976ac1
MD5 23672aaacf1cbdfff869ee9aa02fb70a
BLAKE2b-256 1678d824ffff7521cd140dc2006e44ce2bc82e64b48d1b32e90e956308c85a74

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp312-cp312-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 f5e5a5131045b72345c71062ea1a91910dde913792b6c9b28ebb2c1c0a712e98
MD5 ca14c46db26ea402264c3ea778b6061a
BLAKE2b-256 3a275ae2f3722606360480707adb47f001ad89df8251d06b14ee80336e660b66

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp312-cp312-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 416fa4c2c66c2c6dc6d0a402648c19206e548efa0aa1eff01ad5cdad0af8217d
MD5 184188eb3503a4f0616fe7b94d4f4c50
BLAKE2b-256 80f272409351db66d0a317ec5087e076f31fb7b773a640db8a90ce6b5cac9edd

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp312-cp312-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp312-cp312-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 d66c3beb4209087ddd4cf4ed2a0856b6887e6a913bdcf1aacfec9851cf2cba4e
MD5 0856a0b4db65672bfa196a181fda27c5
BLAKE2b-256 92a228696a9e61e245d1a79816d29d106692a90a2b6e7d78c98b326db70827af

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.48.0-cp311-cp311-win_amd64.whl
  • Upload date:
  • Size: 41.9 MB
  • Tags: CPython 3.11, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0-cp311-cp311-win_amd64.whl
Algorithm Hash digest
SHA256 efaee0276e5e17c2b99b92e0c974bd484ef5977cf5dbc9168e82b71578edb47f
MD5 d13d47a675085724452e9fdec58fb659
BLAKE2b-256 aaf7b3222b13f2d424dae3c9e63fde476af25ebccf1f3faf0b52d1b79fc15c70

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp311-cp311-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 979a66a3f28a02565383ff463527dce78e9b856298872a361283132488e83591
MD5 28f8e931954bd914407d429ff3ef8809
BLAKE2b-256 02ebc5281be180c789cdffbf45b671884c57d7e61345ef3b0f643a4965e108e8

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp311-cp311-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 6fa532d6bb3fd3f0803567c736401c54aecfe1a396d3ad25d2440d220e09f0e7
MD5 33989bc5218ec1ca3d591697d46e02c6
BLAKE2b-256 26080109d1b9cb3f4603f3890e30bc66c65332b79185f12a045343b2ae431f67

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp311-cp311-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp311-cp311-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 56a7e24607d3f02d7b1bae8d29c7e1e423d53143d68b072999777f19678fe77b
MD5 bc843d8e3e8edd94122b72ffd3306a78
BLAKE2b-256 9a55595981f14fbae9ba966feb12af552b1fe69889e44e64ac883a731ed335e0

See more details on using hashes here.

File details

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

File metadata

  • Download URL: llvmlite-0.48.0-cp310-cp310-win_amd64.whl
  • Upload date:
  • Size: 41.9 MB
  • Tags: CPython 3.10, Windows x86-64
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.13

File hashes

Hashes for llvmlite-0.48.0-cp310-cp310-win_amd64.whl
Algorithm Hash digest
SHA256 02853fe4214acb3780fc920c3fee10564b61d58a35e1b78afcc8a546c2deaba3
MD5 451668f8ecfa4cb0dd022731b2d11336
BLAKE2b-256 c52bceee1cdc263617109d514ac4d1b31f10a282662740ff7d5777baae25b3b5

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp310-cp310-manylinux_2_27_aarch64.manylinux_2_28_aarch64.whl
Algorithm Hash digest
SHA256 3ee0c77685a18f5fca994ae21d0763007fca5c5c64b41de37accc78b69079176
MD5 98dd5dcf6e5a84674618eaf7da73abbb
BLAKE2b-256 5ac7aa917444d871a79608af49149de1b28764e87d2ab41f933c5cd02431d03d

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp310-cp310-manylinux2014_x86_64.manylinux_2_17_x86_64.whl
Algorithm Hash digest
SHA256 13532f248960ba888ad5ab8150494e2f3a3d20e5f59f264e63741ea5b0ba844c
MD5 965955eca03f0fa97a408bd57250e700
BLAKE2b-256 a90d6aa48abd423067139a129d1434b77bbcc56080db51d12a88510bb491ca3d

See more details on using hashes here.

File details

Details for the file llvmlite-0.48.0-cp310-cp310-macosx_12_0_arm64.whl.

File metadata

File hashes

Hashes for llvmlite-0.48.0-cp310-cp310-macosx_12_0_arm64.whl
Algorithm Hash digest
SHA256 614aad57df707e3172efd5165f2aa7da6a0c6897e40dce590bf756396815ba76
MD5 61726111b8d8345714c617ebf994e671
BLAKE2b-256 a24e32543c42568fb321b3bdfcf9106e4116ab8f5a7bbcfd9ecf5569b0c07d83

See more details on using hashes here.

Supported by

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