Wed, 15 May 2024 03:48:18 UTC | login

Information for build python-llvmlite-0.39.1-3.fc38

ID242060
Package Namepython-llvmlite
Version0.39.1
Release3.fc38
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/python-llvmlite.git#b94607ebe38e77ebc4a4c35d81cae789bf287544
SummaryLightweight LLVM Python binding for writing JIT compilers
Descriptionllvmlite provides a Python binding to LLVM for use in Numba. Numba previously relied on llvmpy. While llvmpy exposed large parts of the LLVM C++ API for direct calls into the LLVM library, llvmlite takes an entirely different approach. Llvmlite starts from the needs of a JIT compiler and splits them into two decoupled tasks: - Construction of a Module, function by function, Instruction by instruction. - Compilation and optimization of the module into machine code. The construction of an LLVM module does not call the LLVM C++ API. Rather, it constructs the LLVM intermediate representation (IR) in pure Python. This is the role of the IR layer. The compilation of an LLVM module takes the IR in textual form and feeds it into LLVM's parsing API. It then returns a thin wrapper around LLVM's C++ module object. This is the role of the binding layer. Once parsed, the module's source code cannot be modified, which loses the flexibility of the direct mapping of C++ APIs into Python that was provided by llvmpy but saves a great deal of maintenance.
Built bydavidlt
State failed
Volume DEFAULT
StartedThu, 23 Mar 2023 17:57:32 UTC
CompletedFri, 24 Mar 2023 06:12:53 UTC
Taskbuild (f38, /rpms/python-llvmlite.git:b94607ebe38e77ebc4a4c35d81cae789bf287544)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/python-llvmlite.git#b94607ebe38e77ebc4a4c35d81cae789bf287544'}}
Tags No tags
RPMs No RPMs
Changelog * Wed Mar 08 2023 Benjamin A. Beasley <code@musicinmybrain.net> 0.39.1-3 - Patch out max. Python version check entirely * Tue Mar 07 2023 Benjamin A. Beasley <code@musicinmybrain.net> 0.39.1-2 - Allow Python 3.12 (downstream-only); close RHBZ#2176128 * Tue Mar 07 2023 Benjamin A. Beasley <code@musicinmybrain.net> 0.39.1-1 - Update to 0.39.1 * Tue Mar 07 2023 Benjamin A. Beasley <code@musicinmybrain.net> 0.37.0-9 - Convert to SPDX * Tue Mar 07 2023 Benjamin A. Beasley <code@musicinmybrain.net> 0.37.0-8 - Build Sphinx docs as PDF instead of HTML * Fri Jan 20 2023 Fedora Release Engineering <releng@fedoraproject.org> 0.37.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild * Fri Jul 22 2022 Fedora Release Engineering <releng@fedoraproject.org> 0.37.0-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild * Mon Jun 13 2022 Python Maint <python-maint@redhat.com> 0.37.0-5 - Rebuilt for Python 3.11 * Fri May 06 2022 Benjamin A. Beasley <code@musicinmybrain.net> 0.37.0-4 - Allow Python 3.11 in version guard (fix RHBZ#2022282) * Fri Jan 21 2022 Fedora Release Engineering <releng@fedoraproject.org> 0.37.0-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild * Fri Nov 12 2021 Benjamin A. Beasley <code@musicinmybrain.net> 0.37.0-2 - Use upstream PR#769 for Python 3.10 support * Mon Sep 13 2021 Ankur Sinha (Ankur Sinha Gmail) <sanjay.ankur@gmail.com> 0.37.0-1 - feat: init