Mon, 03 Jun 2024 17:20:01 UTC | login

Information for build python-llvmlite-0.37.0-7.fc38

ID230191
Package Namepython-llvmlite
Version0.37.0
Release7.fc38
Epoch
Sourcegit+https://src.fedoraproject.org/rpms/python-llvmlite.git#491fb84a1a07b53c6cc2f8276ac3e6e8586b3446
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, 09 Mar 2023 17:43:07 UTC
CompletedThu, 09 Mar 2023 17:59:34 UTC
Taskbuild (f38, /rpms/python-llvmlite.git:491fb84a1a07b53c6cc2f8276ac3e6e8586b3446)
Extra{'source': {'original_url': 'git+https://src.fedoraproject.org/rpms/python-llvmlite.git#491fb84a1a07b53c6cc2f8276ac3e6e8586b3446'}}
Tags No tags
RPMs No RPMs
Changelog * 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