llvmlite 0.44.0__cp313-cp313-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of llvmlite might be problematic. Click here for more details.

Files changed (46) hide show
  1. llvmlite/__init__.py +10 -0
  2. llvmlite/_version.py +11 -0
  3. llvmlite/binding/__init__.py +19 -0
  4. llvmlite/binding/analysis.py +69 -0
  5. llvmlite/binding/common.py +34 -0
  6. llvmlite/binding/context.py +39 -0
  7. llvmlite/binding/dylib.py +45 -0
  8. llvmlite/binding/executionengine.py +330 -0
  9. llvmlite/binding/ffi.py +395 -0
  10. llvmlite/binding/initfini.py +73 -0
  11. llvmlite/binding/linker.py +20 -0
  12. llvmlite/binding/llvmlite.dll +0 -0
  13. llvmlite/binding/module.py +349 -0
  14. llvmlite/binding/newpassmanagers.py +357 -0
  15. llvmlite/binding/object_file.py +82 -0
  16. llvmlite/binding/options.py +17 -0
  17. llvmlite/binding/orcjit.py +342 -0
  18. llvmlite/binding/passmanagers.py +946 -0
  19. llvmlite/binding/targets.py +520 -0
  20. llvmlite/binding/transforms.py +151 -0
  21. llvmlite/binding/typeref.py +285 -0
  22. llvmlite/binding/value.py +632 -0
  23. llvmlite/ir/__init__.py +11 -0
  24. llvmlite/ir/_utils.py +80 -0
  25. llvmlite/ir/builder.py +1120 -0
  26. llvmlite/ir/context.py +20 -0
  27. llvmlite/ir/instructions.py +920 -0
  28. llvmlite/ir/module.py +246 -0
  29. llvmlite/ir/transforms.py +64 -0
  30. llvmlite/ir/types.py +734 -0
  31. llvmlite/ir/values.py +1217 -0
  32. llvmlite/tests/__init__.py +57 -0
  33. llvmlite/tests/__main__.py +3 -0
  34. llvmlite/tests/customize.py +407 -0
  35. llvmlite/tests/refprune_proto.py +329 -0
  36. llvmlite/tests/test_binding.py +3208 -0
  37. llvmlite/tests/test_ir.py +2994 -0
  38. llvmlite/tests/test_refprune.py +730 -0
  39. llvmlite/tests/test_valuerepr.py +60 -0
  40. llvmlite/utils.py +29 -0
  41. llvmlite-0.44.0.dist-info/LICENSE +24 -0
  42. llvmlite-0.44.0.dist-info/LICENSE.thirdparty +225 -0
  43. llvmlite-0.44.0.dist-info/METADATA +138 -0
  44. llvmlite-0.44.0.dist-info/RECORD +46 -0
  45. llvmlite-0.44.0.dist-info/WHEEL +5 -0
  46. llvmlite-0.44.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,60 @@
1
+ import math
2
+ import sys
3
+ import unittest
4
+
5
+ from llvmlite.ir import (
6
+ Constant, FloatType, DoubleType, LiteralStructType, IntType,
7
+ ArrayType, HalfType)
8
+ from llvmlite.tests import TestCase
9
+
10
+
11
+ int8 = IntType(8)
12
+ int16 = IntType(16)
13
+
14
+
15
+ PY36_OR_LATER = sys.version_info[:2] >= (3, 6)
16
+
17
+
18
+ class TestValueRepr(TestCase):
19
+
20
+ def test_double_repr(self):
21
+ def check_repr(val, expected):
22
+ c = Constant(DoubleType(), val)
23
+ self.assertEqual(str(c), expected)
24
+ check_repr(math.pi, "double 0x400921fb54442d18")
25
+ check_repr(float('inf'), "double 0x7ff0000000000000")
26
+ check_repr(float('-inf'), "double 0xfff0000000000000")
27
+
28
+ def test_float_repr(self):
29
+ def check_repr(val, expected):
30
+ c = Constant(FloatType(), val)
31
+ self.assertEqual(str(c), expected)
32
+ check_repr(math.pi, "float 0x400921fb60000000")
33
+ check_repr(float('inf'), "float 0x7ff0000000000000")
34
+ check_repr(float('-inf'), "float 0xfff0000000000000")
35
+
36
+ @unittest.skipUnless(PY36_OR_LATER, 'py36+ only')
37
+ def test_half_repr(self):
38
+ def check_repr(val, expected):
39
+ c = Constant(HalfType(), val)
40
+ self.assertEqual(str(c), expected)
41
+ check_repr(math.pi, "half 0x4009200000000000")
42
+ check_repr(float('inf'), "half 0x7ff0000000000000")
43
+ check_repr(float('-inf'), "half 0xfff0000000000000")
44
+
45
+ def test_struct_repr(self):
46
+ tp = LiteralStructType([int8, int16])
47
+ c = Constant(tp, (Constant(int8, 100), Constant(int16, 1000)))
48
+ self.assertEqual(str(c), "{i8, i16} {i8 100, i16 1000}")
49
+
50
+ def test_array_repr(self):
51
+ tp = ArrayType(int8, 3)
52
+ values = [Constant(int8, x) for x in (5, 10, -15)]
53
+ c = Constant(tp, values)
54
+ self.assertEqual(str(c), "[3 x i8] [i8 5, i8 10, i8 -15]")
55
+ c = Constant(tp, bytearray(b"\x01\x02\x03"))
56
+ self.assertEqual(str(c), '[3 x i8] c"\\01\\02\\03"')
57
+
58
+
59
+ if __name__ == "__main__":
60
+ unittest.main()
llvmlite/utils.py ADDED
@@ -0,0 +1,29 @@
1
+ import os
2
+ import sys
3
+
4
+
5
+ # This module must be importable without loading the binding, to avoid
6
+ # bootstrapping issues in setup.py.
7
+
8
+ def get_library_name():
9
+ """
10
+ Return the name of the llvmlite shared library file.
11
+ """
12
+ if os.name == 'posix':
13
+ if sys.platform == 'darwin':
14
+ return 'libllvmlite.dylib'
15
+ else:
16
+ return 'libllvmlite.so'
17
+ else:
18
+ assert os.name == 'nt'
19
+ return 'llvmlite.dll'
20
+
21
+
22
+ def get_library_files():
23
+ """
24
+ Return the names of shared library files needed for this platform.
25
+ """
26
+ files = [get_library_name()]
27
+ if os.name == 'nt':
28
+ files.extend(['msvcr120.dll', 'msvcp120.dll'])
29
+ return files
@@ -0,0 +1,24 @@
1
+ Copyright (c) 2014-, Continuum Analytics, Inc.
2
+ All rights reserved.
3
+
4
+ Redistribution and use in source and binary forms, with or without
5
+ modification, are permitted provided that the following conditions are
6
+ met:
7
+
8
+ Redistributions of source code must retain the above copyright notice,
9
+ this list of conditions and the following disclaimer.
10
+
11
+ Redistributions in binary form must reproduce the above copyright
12
+ notice, this list of conditions and the following disclaimer in the
13
+ documentation and/or other materials provided with the distribution.
14
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
15
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
16
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
17
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
18
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
19
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
20
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
24
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,225 @@
1
+ The llvmlite source tree includes code from LLVM that is governed by the
2
+ following license.
3
+
4
+ ==============================================================================
5
+ The Apache License v2.0 with LLVM Exceptions:
6
+ ==============================================================================
7
+
8
+ Apache License
9
+ Version 2.0, January 2004
10
+ http://www.apache.org/licenses/
11
+
12
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
13
+
14
+ 1. Definitions.
15
+
16
+ "License" shall mean the terms and conditions for use, reproduction,
17
+ and distribution as defined by Sections 1 through 9 of this document.
18
+
19
+ "Licensor" shall mean the copyright owner or entity authorized by
20
+ the copyright owner that is granting the License.
21
+
22
+ "Legal Entity" shall mean the union of the acting entity and all
23
+ other entities that control, are controlled by, or are under common
24
+ control with that entity. For the purposes of this definition,
25
+ "control" means (i) the power, direct or indirect, to cause the
26
+ direction or management of such entity, whether by contract or
27
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
28
+ outstanding shares, or (iii) beneficial ownership of such entity.
29
+
30
+ "You" (or "Your") shall mean an individual or Legal Entity
31
+ exercising permissions granted by this License.
32
+
33
+ "Source" form shall mean the preferred form for making modifications,
34
+ including but not limited to software source code, documentation
35
+ source, and configuration files.
36
+
37
+ "Object" form shall mean any form resulting from mechanical
38
+ transformation or translation of a Source form, including but
39
+ not limited to compiled object code, generated documentation,
40
+ and conversions to other media types.
41
+
42
+ "Work" shall mean the work of authorship, whether in Source or
43
+ Object form, made available under the License, as indicated by a
44
+ copyright notice that is included in or attached to the work
45
+ (an example is provided in the Appendix below).
46
+
47
+ "Derivative Works" shall mean any work, whether in Source or Object
48
+ form, that is based on (or derived from) the Work and for which the
49
+ editorial revisions, annotations, elaborations, or other modifications
50
+ represent, as a whole, an original work of authorship. For the purposes
51
+ of this License, Derivative Works shall not include works that remain
52
+ separable from, or merely link (or bind by name) to the interfaces of,
53
+ the Work and Derivative Works thereof.
54
+
55
+ "Contribution" shall mean any work of authorship, including
56
+ the original version of the Work and any modifications or additions
57
+ to that Work or Derivative Works thereof, that is intentionally
58
+ submitted to Licensor for inclusion in the Work by the copyright owner
59
+ or by an individual or Legal Entity authorized to submit on behalf of
60
+ the copyright owner. For the purposes of this definition, "submitted"
61
+ means any form of electronic, verbal, or written communication sent
62
+ to the Licensor or its representatives, including but not limited to
63
+ communication on electronic mailing lists, source code control systems,
64
+ and issue tracking systems that are managed by, or on behalf of, the
65
+ Licensor for the purpose of discussing and improving the Work, but
66
+ excluding communication that is conspicuously marked or otherwise
67
+ designated in writing by the copyright owner as "Not a Contribution."
68
+
69
+ "Contributor" shall mean Licensor and any individual or Legal Entity
70
+ on behalf of whom a Contribution has been received by Licensor and
71
+ subsequently incorporated within the Work.
72
+
73
+ 2. Grant of Copyright License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ copyright license to reproduce, prepare Derivative Works of,
77
+ publicly display, publicly perform, sublicense, and distribute the
78
+ Work and such Derivative Works in Source or Object form.
79
+
80
+ 3. Grant of Patent License. Subject to the terms and conditions of
81
+ this License, each Contributor hereby grants to You a perpetual,
82
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
83
+ (except as stated in this section) patent license to make, have made,
84
+ use, offer to sell, sell, import, and otherwise transfer the Work,
85
+ where such license applies only to those patent claims licensable
86
+ by such Contributor that are necessarily infringed by their
87
+ Contribution(s) alone or by combination of their Contribution(s)
88
+ with the Work to which such Contribution(s) was submitted. If You
89
+ institute patent litigation against any entity (including a
90
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
91
+ or a Contribution incorporated within the Work constitutes direct
92
+ or contributory patent infringement, then any patent licenses
93
+ granted to You under this License for that Work shall terminate
94
+ as of the date such litigation is filed.
95
+
96
+ 4. Redistribution. You may reproduce and distribute copies of the
97
+ Work or Derivative Works thereof in any medium, with or without
98
+ modifications, and in Source or Object form, provided that You
99
+ meet the following conditions:
100
+
101
+ (a) You must give any other recipients of the Work or
102
+ Derivative Works a copy of this License; and
103
+
104
+ (b) You must cause any modified files to carry prominent notices
105
+ stating that You changed the files; and
106
+
107
+ (c) You must retain, in the Source form of any Derivative Works
108
+ that You distribute, all copyright, patent, trademark, and
109
+ attribution notices from the Source form of the Work,
110
+ excluding those notices that do not pertain to any part of
111
+ the Derivative Works; and
112
+
113
+ (d) If the Work includes a "NOTICE" text file as part of its
114
+ distribution, then any Derivative Works that You distribute must
115
+ include a readable copy of the attribution notices contained
116
+ within such NOTICE file, excluding those notices that do not
117
+ pertain to any part of the Derivative Works, in at least one
118
+ of the following places: within a NOTICE text file distributed
119
+ as part of the Derivative Works; within the Source form or
120
+ documentation, if provided along with the Derivative Works; or,
121
+ within a display generated by the Derivative Works, if and
122
+ wherever such third-party notices normally appear. The contents
123
+ of the NOTICE file are for informational purposes only and
124
+ do not modify the License. You may add Your own attribution
125
+ notices within Derivative Works that You distribute, alongside
126
+ or as an addendum to the NOTICE text from the Work, provided
127
+ that such additional attribution notices cannot be construed
128
+ as modifying the License.
129
+
130
+ You may add Your own copyright statement to Your modifications and
131
+ may provide additional or different license terms and conditions
132
+ for use, reproduction, or distribution of Your modifications, or
133
+ for any such Derivative Works as a whole, provided Your use,
134
+ reproduction, and distribution of the Work otherwise complies with
135
+ the conditions stated in this License.
136
+
137
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
138
+ any Contribution intentionally submitted for inclusion in the Work
139
+ by You to the Licensor shall be under the terms and conditions of
140
+ this License, without any additional terms or conditions.
141
+ Notwithstanding the above, nothing herein shall supersede or modify
142
+ the terms of any separate license agreement you may have executed
143
+ with Licensor regarding such Contributions.
144
+
145
+ 6. Trademarks. This License does not grant permission to use the trade
146
+ names, trademarks, service marks, or product names of the Licensor,
147
+ except as required for reasonable and customary use in describing the
148
+ origin of the Work and reproducing the content of the NOTICE file.
149
+
150
+ 7. Disclaimer of Warranty. Unless required by applicable law or
151
+ agreed to in writing, Licensor provides the Work (and each
152
+ Contributor provides its Contributions) on an "AS IS" BASIS,
153
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
154
+ implied, including, without limitation, any warranties or conditions
155
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
156
+ PARTICULAR PURPOSE. You are solely responsible for determining the
157
+ appropriateness of using or redistributing the Work and assume any
158
+ risks associated with Your exercise of permissions under this License.
159
+
160
+ 8. Limitation of Liability. In no event and under no legal theory,
161
+ whether in tort (including negligence), contract, or otherwise,
162
+ unless required by applicable law (such as deliberate and grossly
163
+ negligent acts) or agreed to in writing, shall any Contributor be
164
+ liable to You for damages, including any direct, indirect, special,
165
+ incidental, or consequential damages of any character arising as a
166
+ result of this License or out of the use or inability to use the
167
+ Work (including but not limited to damages for loss of goodwill,
168
+ work stoppage, computer failure or malfunction, or any and all
169
+ other commercial damages or losses), even if such Contributor
170
+ has been advised of the possibility of such damages.
171
+
172
+ 9. Accepting Warranty or Additional Liability. While redistributing
173
+ the Work or Derivative Works thereof, You may choose to offer,
174
+ and charge a fee for, acceptance of support, warranty, indemnity,
175
+ or other liability obligations and/or rights consistent with this
176
+ License. However, in accepting such obligations, You may act only
177
+ on Your own behalf and on Your sole responsibility, not on behalf
178
+ of any other Contributor, and only if You agree to indemnify,
179
+ defend, and hold each Contributor harmless for any liability
180
+ incurred by, or claims asserted against, such Contributor by reason
181
+ of your accepting any such warranty or additional liability.
182
+
183
+ END OF TERMS AND CONDITIONS
184
+
185
+ APPENDIX: How to apply the Apache License to your work.
186
+
187
+ To apply the Apache License to your work, attach the following
188
+ boilerplate notice, with the fields enclosed by brackets "[]"
189
+ replaced with your own identifying information. (Don't include
190
+ the brackets!) The text should be enclosed in the appropriate
191
+ comment syntax for the file format. We also recommend that a
192
+ file or class name and description of purpose be included on the
193
+ same "printed page" as the copyright notice for easier
194
+ identification within third-party archives.
195
+
196
+ Copyright [yyyy] [name of copyright owner]
197
+
198
+ Licensed under the Apache License, Version 2.0 (the "License");
199
+ you may not use this file except in compliance with the License.
200
+ You may obtain a copy of the License at
201
+
202
+ http://www.apache.org/licenses/LICENSE-2.0
203
+
204
+ Unless required by applicable law or agreed to in writing, software
205
+ distributed under the License is distributed on an "AS IS" BASIS,
206
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
207
+ See the License for the specific language governing permissions and
208
+ limitations under the License.
209
+
210
+
211
+ ---- LLVM Exceptions to the Apache 2.0 License ----
212
+
213
+ As an exception, if, as a result of your compiling your source code, portions
214
+ of this Software are embedded into an Object form of such source code, you
215
+ may redistribute such embedded portions in such Object form without complying
216
+ with the conditions of Sections 4(a), 4(b) and 4(d) of the License.
217
+
218
+ In addition, if you combine or link compiled forms of this Software with
219
+ software that is licensed under the GPLv2 ("Combined Software") and if a
220
+ court of competent jurisdiction determines that the patent provision (Section
221
+ 3), the indemnity provision (Section 9) or other Section of the License
222
+ conflicts with the conditions of the GPLv2, you may retroactively and
223
+ prospectively choose to deem waived or otherwise exclude such Section(s) of
224
+ the License, but only in their entirety and only with respect to the Combined
225
+ Software.
@@ -0,0 +1,138 @@
1
+ Metadata-Version: 2.1
2
+ Name: llvmlite
3
+ Version: 0.44.0
4
+ Summary: lightweight wrapper around basic LLVM functionality
5
+ Home-page: http://llvmlite.readthedocs.io
6
+ License: BSD
7
+ Project-URL: Source, https://github.com/numba/llvmlite
8
+ Classifier: Development Status :: 4 - Beta
9
+ Classifier: Intended Audience :: Developers
10
+ Classifier: Operating System :: OS Independent
11
+ Classifier: Programming Language :: Python
12
+ Classifier: Programming Language :: Python :: 3
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Topic :: Software Development :: Code Generators
18
+ Classifier: Topic :: Software Development :: Compilers
19
+ Requires-Python: >=3.10
20
+ License-File: LICENSE
21
+ License-File: LICENSE.thirdparty
22
+
23
+ ========
24
+ llvmlite
25
+ ========
26
+
27
+ .. image:: https://dev.azure.com/numba/numba/_apis/build/status/numba.llvmlite?branchName=main
28
+ :target: https://dev.azure.com/numba/numba/_build/latest?definitionId=2&branchName=main
29
+ :alt: Azure Pipelines
30
+ .. image:: https://codeclimate.com/github/numba/llvmlite/badges/gpa.svg
31
+ :target: https://codeclimate.com/github/numba/llvmlite
32
+ :alt: Code Climate
33
+ .. image:: https://coveralls.io/repos/github/numba/llvmlite/badge.svg
34
+ :target: https://coveralls.io/github/numba/llvmlite
35
+ :alt: Coveralls.io
36
+ .. image:: https://readthedocs.org/projects/llvmlite/badge/
37
+ :target: https://llvmlite.readthedocs.io
38
+ :alt: Readthedocs.io
39
+
40
+ A Lightweight LLVM Python Binding for Writing JIT Compilers
41
+ -----------------------------------------------------------
42
+
43
+ .. _llvmpy: https://github.com/llvmpy/llvmpy
44
+
45
+ llvmlite is a project originally tailored for Numba_'s needs, using the
46
+ following approach:
47
+
48
+ * A small C wrapper around the parts of the LLVM C++ API we need that are
49
+ not already exposed by the LLVM C API.
50
+ * A ctypes Python wrapper around the C API.
51
+ * A pure Python implementation of the subset of the LLVM IR builder that we
52
+ need for Numba.
53
+
54
+ Why llvmlite
55
+ ============
56
+
57
+ The old llvmpy_ binding exposes a lot of LLVM APIs but the mapping of
58
+ C++-style memory management to Python is error prone. Numba_ and many JIT
59
+ compilers do not need a full LLVM API. Only the IR builder, optimizer,
60
+ and JIT compiler APIs are necessary.
61
+
62
+ Key Benefits
63
+ ============
64
+
65
+ * The IR builder is pure Python code and decoupled from LLVM's
66
+ frequently-changing C++ APIs.
67
+ * Materializing a LLVM module calls LLVM's IR parser which provides
68
+ better error messages than step-by-step IR building through the C++
69
+ API (no more segfaults or process aborts).
70
+ * Most of llvmlite uses the LLVM C API which is small but very stable
71
+ (low maintenance when changing LLVM version).
72
+ * The binding is not a Python C-extension, but a plain DLL accessed using
73
+ ctypes (no need to wrestle with Python's compiler requirements and C++ 11
74
+ compatibility).
75
+ * The Python binding layer has sane memory management.
76
+ * llvmlite is faster than llvmpy thanks to a much simpler architecture
77
+ (the Numba_ test suite is twice faster than it was).
78
+
79
+ Compatibility
80
+ =============
81
+
82
+ llvmlite has been tested with Python 3.10 -- 3.13 and is likely to work with
83
+ greater versions.
84
+
85
+ As of version 0.44.0, llvmlite requires LLVM 15.x.x on all architectures
86
+
87
+ Historical compatibility table:
88
+
89
+ ================= ========================
90
+ llvmlite versions compatible LLVM versions
91
+ ================= ========================
92
+ 0.44.0 - ...... 15.x.x
93
+ 0.41.0 - 0.43.0 14.x.x
94
+ 0.40.0 - 0.40.1 11.x.x and 14.x.x (12.x.x and 13.x.x untested but may work)
95
+ 0.37.0 - 0.39.1 11.x.x
96
+ 0.34.0 - 0.36.0 10.0.x (9.0.x for ``aarch64`` only)
97
+ 0.33.0 9.0.x
98
+ 0.29.0 - 0.32.0 7.0.x, 7.1.x, 8.0.x
99
+ 0.27.0 - 0.28.0 7.0.x
100
+ 0.23.0 - 0.26.0 6.0.x
101
+ 0.21.0 - 0.22.0 5.0.x
102
+ 0.17.0 - 0.20.0 4.0.x
103
+ 0.16.0 - 0.17.0 3.9.x
104
+ 0.13.0 - 0.15.0 3.8.x
105
+ 0.9.0 - 0.12.1 3.7.x
106
+ 0.6.0 - 0.8.0 3.6.x
107
+ 0.1.0 - 0.5.1 3.5.x
108
+ ================= ========================
109
+
110
+ Documentation
111
+ =============
112
+
113
+ You'll find the documentation at http://llvmlite.pydata.org
114
+
115
+
116
+ Pre-built binaries
117
+ ==================
118
+
119
+ We recommend you use the binaries provided by the Numba_ team for
120
+ the Conda_ package manager. You can find them in Numba's `anaconda.org
121
+ channel <https://anaconda.org/numba>`_. For example::
122
+
123
+ $ conda install --channel=numba llvmlite
124
+
125
+ (or, simply, the official llvmlite package provided in the Anaconda_
126
+ distribution)
127
+
128
+ .. _Numba: http://numba.pydata.org/
129
+ .. _Conda: http://conda.pydata.org/
130
+ .. _Anaconda: http://docs.continuum.io/anaconda/index.html
131
+
132
+
133
+ Other build methods
134
+ ===================
135
+
136
+ If you don't want to use our pre-built packages, you can compile
137
+ and install llvmlite yourself. The documentation will teach you how:
138
+ http://llvmlite.pydata.org/en/latest/install/index.html
@@ -0,0 +1,46 @@
1
+ llvmlite/__init__.py,sha256=0ZBnzGNkAKkpurkYwTruxE5bGAR8HbfU92LAsirsZOs,364
2
+ llvmlite/_version.py,sha256=JdNxwDS0xBqB5wPno0W0drIb-wMQLeh7aIe-DW4bfw0,429
3
+ llvmlite/utils.py,sha256=pjxZnAAR2kmKLUTyIEoHKVFt70rK9kQMgBp7x2KDBn0,724
4
+ llvmlite/binding/__init__.py,sha256=mQukSZ4dbzFGkEgxrzqjW8lzww8MRq72UTHCQPpewkE,455
5
+ llvmlite/binding/analysis.py,sha256=9hzt_SNJNY-VUPIaOQcI3ZM0Ock2uLjzS8KNkkFZLQI,2322
6
+ llvmlite/binding/common.py,sha256=HK0ftE8o6i1_hLkwrpN73p6AFaDzOvPJ0KHte8ikCNk,776
7
+ llvmlite/binding/context.py,sha256=9daowjuBGe1a1tjEORXbcgjUVFJQXkk7N2vnISViby4,1137
8
+ llvmlite/binding/dylib.py,sha256=1yBZq1rcP-GDrHDyZkNMrEHAuD43yK3v_sQ_wQ2fAmE,1345
9
+ llvmlite/binding/executionengine.py,sha256=h8EdSkQQeNjzyBL5psNeOMeuyiAtPN_UHPssr1L-tPo,11352
10
+ llvmlite/binding/ffi.py,sha256=WVmQUUYU1CCascZi8yXNUePjcFOVhS-UQlVFm1NldmU,12761
11
+ llvmlite/binding/initfini.py,sha256=F6r9ubo5qngIFRz08022vOxFMVikstcu_tq8LrXsJCM,1668
12
+ llvmlite/binding/linker.py,sha256=Pd3ePT5kBa7ZxUTApskS3zymsZ7uJ932QF88oRpbc2Y,509
13
+ llvmlite/binding/llvmlite.dll,sha256=JaOno9FUEgSV3ZdLWZRyyPHmuyK_RlYkPsq2GWSRJjo,88621056
14
+ llvmlite/binding/module.py,sha256=05ig4UzCu8Vdcf1Uk2iFxlbDvYtMksNM4fER2P-0Kz8,11523
15
+ llvmlite/binding/newpassmanagers.py,sha256=9WPX94bckXMzoH20olvRoHmygx3K5V4ZMYzt4jhaVxM,11701
16
+ llvmlite/binding/object_file.py,sha256=4mj6EkKafX4ieGy-bSvU46sckYNFzLLWNhLSvkfnGeM,2746
17
+ llvmlite/binding/options.py,sha256=DTfM0Feim-maHwAc9C0Q4HHb8ootXlI3RtdzDX3-CKQ,526
18
+ llvmlite/binding/orcjit.py,sha256=eY0sxPJTBOv7Q1rUVMPTF2AEkeYrKzKJ8QbRzDuUx8Q,12198
19
+ llvmlite/binding/passmanagers.py,sha256=78YjfBpeBbV17qKoGbUhyFE1pfwVnvUw-eR08Q0OdVA,36145
20
+ llvmlite/binding/targets.py,sha256=nKLJecd-reeNvHWFYIYYXlvipajapsKj1hJLq71GXG8,17863
21
+ llvmlite/binding/transforms.py,sha256=bGrsY0Wnr9Zsk8Q2BrkA9bZjHCwYAQZE1AMl0HaF4jM,5098
22
+ llvmlite/binding/typeref.py,sha256=y66zwDNuImA38iFUBFC3i-ePhqMUeMCw467IZGDrBnw,8791
23
+ llvmlite/binding/value.py,sha256=sd-JGpW2RDg1g5TAELeJMNaRp_mQjDvhfxlExWBtggI,20109
24
+ llvmlite/ir/__init__.py,sha256=lQuvg8hwt1obBTWybIqlxCFtnIncDK1gHWcwpDH4tO0,269
25
+ llvmlite/ir/_utils.py,sha256=6EbPTTZ7lVyxxHIzIx7PV8Tjl-aUTewotGwesD_6xmY,2081
26
+ llvmlite/ir/builder.py,sha256=zPC5g1Hu3oEgAWBrchoq7BojAR8Xi9MP6EyOPYVKxGI,34748
27
+ llvmlite/ir/context.py,sha256=GB8Hm66vy9rkpENf_Psb90g4Tf20AzcbF4gvnAWN2j0,560
28
+ llvmlite/ir/instructions.py,sha256=HAmdrDyWgR947-GlLINFT-wf5ptFSpev2Z3RVlg-VeY,33973
29
+ llvmlite/ir/module.py,sha256=8URQg2_RKoEi0SbgY7DDBM5Veb-v1w9P1-hIc7W8T8Y,9320
30
+ llvmlite/ir/transforms.py,sha256=AS59PY8GaEUITpPMGJefuK_UUJxFHgPYZcok8HlZJaU,1616
31
+ llvmlite/ir/types.py,sha256=OFNElaCDJTEHhFoEJw4xJY3DDXkFk-jHTR2KK3JDuf4,20756
32
+ llvmlite/ir/values.py,sha256=5Ck6qpa0-xhisdFDkmfIPwjSANEJP0ecQ0IgfPU2bkI,35240
33
+ llvmlite/tests/__init__.py,sha256=bjwcCUkizqVJEjD0YGSfXc5KA99tFI-6NK78Mr-zRrU,1435
34
+ llvmlite/tests/__main__.py,sha256=akCE3R4XPkV3ywVk4LsKMplMU_u8MmK15bVnYRVJFfI,43
35
+ llvmlite/tests/customize.py,sha256=TWOCtgBTa57uCogdEOnWsX-jKKssTbWAItET3-9INTs,13675
36
+ llvmlite/tests/refprune_proto.py,sha256=4ZwWsoDzVx6Ih-Z8yVxctOjEhGRKonV3QkL2815Mmiw,9006
37
+ llvmlite/tests/test_binding.py,sha256=f0q3_IwGjmsd0UK9Dp-ShO2t9xUXEXaYELpFXmr7CXA,112419
38
+ llvmlite/tests/test_ir.py,sha256=kuuzEDUSujOUZEGMq3QhAm0eKiuVm6j3l_5eM8Z_VV8,121554
39
+ llvmlite/tests/test_refprune.py,sha256=bhEdCqqI1df_dxivGONUBL56gn8na8N6XDbvNil1AIE,22350
40
+ llvmlite/tests/test_valuerepr.py,sha256=uSEyNSVuo2JFZDL7QARFgsbKiNzgR2HFALcwK6yXSGc,2049
41
+ llvmlite-0.44.0.dist-info/LICENSE,sha256=8z_CZxFReVSrz6WQQ-4H0BpmI7ZhwdJsxpsJM85P-5g,1322
42
+ llvmlite-0.44.0.dist-info/LICENSE.thirdparty,sha256=e1ZMevmrRG0kW6Zq3IzaL2HR0WL4QomVV0megLcVmTo,12786
43
+ llvmlite-0.44.0.dist-info/METADATA,sha256=JeIQSrUgvESDwPg_-UYg8IwpUc73fVgfroShj1ZAwpM,4952
44
+ llvmlite-0.44.0.dist-info/WHEEL,sha256=ugue6NJCr9gUOQmWni1lhHLbY_ilTPbmSokNVdK9MnY,102
45
+ llvmlite-0.44.0.dist-info/top_level.txt,sha256=WJi8Gq92jA2wv_aV1Oshp9iZ-zMa43Kcmw80kWeGYGA,9
46
+ llvmlite-0.44.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: bdist_wheel (0.44.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp313-cp313-win_amd64
5
+
@@ -0,0 +1 @@
1
+ llvmlite