llvmlite 0.46.0b1__cp314-cp314-manylinux_2_27_aarch64.manylinux_2_28_aarch64.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 (45) hide show
  1. llvmlite/__init__.py +11 -0
  2. llvmlite/_version.py +11 -0
  3. llvmlite/binding/__init__.py +18 -0
  4. llvmlite/binding/analysis.py +69 -0
  5. llvmlite/binding/common.py +34 -0
  6. llvmlite/binding/config.py +143 -0
  7. llvmlite/binding/context.py +31 -0
  8. llvmlite/binding/dylib.py +45 -0
  9. llvmlite/binding/executionengine.py +330 -0
  10. llvmlite/binding/ffi.py +395 -0
  11. llvmlite/binding/initfini.py +85 -0
  12. llvmlite/binding/libllvmlite.so +0 -0
  13. llvmlite/binding/linker.py +20 -0
  14. llvmlite/binding/module.py +349 -0
  15. llvmlite/binding/newpassmanagers.py +1049 -0
  16. llvmlite/binding/object_file.py +82 -0
  17. llvmlite/binding/options.py +17 -0
  18. llvmlite/binding/orcjit.py +342 -0
  19. llvmlite/binding/targets.py +462 -0
  20. llvmlite/binding/typeref.py +267 -0
  21. llvmlite/binding/value.py +632 -0
  22. llvmlite/ir/__init__.py +11 -0
  23. llvmlite/ir/_utils.py +80 -0
  24. llvmlite/ir/builder.py +1120 -0
  25. llvmlite/ir/context.py +20 -0
  26. llvmlite/ir/instructions.py +920 -0
  27. llvmlite/ir/module.py +256 -0
  28. llvmlite/ir/transforms.py +64 -0
  29. llvmlite/ir/types.py +730 -0
  30. llvmlite/ir/values.py +1217 -0
  31. llvmlite/tests/__init__.py +57 -0
  32. llvmlite/tests/__main__.py +3 -0
  33. llvmlite/tests/customize.py +407 -0
  34. llvmlite/tests/refprune_proto.py +330 -0
  35. llvmlite/tests/test_binding.py +3155 -0
  36. llvmlite/tests/test_ir.py +3095 -0
  37. llvmlite/tests/test_refprune.py +574 -0
  38. llvmlite/tests/test_valuerepr.py +60 -0
  39. llvmlite/utils.py +29 -0
  40. llvmlite-0.46.0b1.dist-info/METADATA +145 -0
  41. llvmlite-0.46.0b1.dist-info/RECORD +45 -0
  42. llvmlite-0.46.0b1.dist-info/WHEEL +6 -0
  43. llvmlite-0.46.0b1.dist-info/licenses/LICENSE +24 -0
  44. llvmlite-0.46.0b1.dist-info/licenses/LICENSE.thirdparty +225 -0
  45. llvmlite-0.46.0b1.dist-info/top_level.txt +1 -0
@@ -0,0 +1,145 @@
1
+ Metadata-Version: 2.4
2
+ Name: llvmlite
3
+ Version: 0.46.0b1
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: Programming Language :: Python :: 3.14
18
+ Classifier: Topic :: Software Development :: Code Generators
19
+ Classifier: Topic :: Software Development :: Compilers
20
+ Requires-Python: >=3.10
21
+ License-File: LICENSE
22
+ License-File: LICENSE.thirdparty
23
+ Dynamic: classifier
24
+ Dynamic: description
25
+ Dynamic: home-page
26
+ Dynamic: license
27
+ Dynamic: license-file
28
+ Dynamic: project-url
29
+ Dynamic: requires-python
30
+ Dynamic: summary
31
+
32
+ ========
33
+ llvmlite
34
+ ========
35
+
36
+ .. image:: https://dev.azure.com/numba/numba/_apis/build/status/numba.llvmlite?branchName=main
37
+ :target: https://dev.azure.com/numba/numba/_build/latest?definitionId=2&branchName=main
38
+ :alt: Azure Pipelines
39
+ .. image:: https://coveralls.io/repos/github/numba/llvmlite/badge.svg
40
+ :target: https://coveralls.io/github/numba/llvmlite
41
+ :alt: Coveralls.io
42
+ .. image:: https://readthedocs.org/projects/llvmlite/badge/
43
+ :target: https://llvmlite.readthedocs.io
44
+ :alt: Readthedocs.io
45
+
46
+ A Lightweight LLVM Python Binding for Writing JIT Compilers
47
+ -----------------------------------------------------------
48
+
49
+ .. _llvmpy: https://github.com/llvmpy/llvmpy
50
+
51
+ llvmlite is a project originally tailored for Numba_'s needs, using the
52
+ following approach:
53
+
54
+ * A small C wrapper around the parts of the LLVM C++ API we need that are
55
+ not already exposed by the LLVM C API.
56
+ * A ctypes Python wrapper around the C API.
57
+ * A pure Python implementation of the subset of the LLVM IR builder that we
58
+ need for Numba.
59
+
60
+ Why llvmlite
61
+ ============
62
+
63
+ The old llvmpy_ binding exposes a lot of LLVM APIs but the mapping of
64
+ C++-style memory management to Python is error prone. Numba_ and many JIT
65
+ compilers do not need a full LLVM API. Only the IR builder, optimizer,
66
+ and JIT compiler APIs are necessary.
67
+
68
+ Key Benefits
69
+ ============
70
+
71
+ * The IR builder is pure Python code and decoupled from LLVM's
72
+ frequently-changing C++ APIs.
73
+ * Materializing a LLVM module calls LLVM's IR parser which provides
74
+ better error messages than step-by-step IR building through the C++
75
+ API (no more segfaults or process aborts).
76
+ * Most of llvmlite uses the LLVM C API which is small but very stable
77
+ (low maintenance when changing LLVM version).
78
+ * The binding is not a Python C-extension, but a plain DLL accessed using
79
+ ctypes (no need to wrestle with Python's compiler requirements and C++ 11
80
+ compatibility).
81
+ * The Python binding layer has sane memory management.
82
+ * llvmlite is faster than llvmpy thanks to a much simpler architecture
83
+ (the Numba_ test suite is twice faster than it was).
84
+
85
+ Compatibility
86
+ =============
87
+
88
+ llvmlite has been tested with Python 3.10 -- 3.13 and is likely to work with
89
+ greater versions.
90
+
91
+ As of version 0.45.0, llvmlite requires LLVM 20.x.x on all architectures
92
+
93
+ Historical compatibility table:
94
+
95
+ ================= ========================
96
+ llvmlite versions compatible LLVM versions
97
+ ================= ========================
98
+ 0.45.0 - ...... 20.x.x
99
+ 0.44.0 15.x.x and 16.x.x
100
+ 0.41.0 - 0.43.0 14.x.x
101
+ 0.40.0 - 0.40.1 11.x.x and 14.x.x (12.x.x and 13.x.x untested but may work)
102
+ 0.37.0 - 0.39.1 11.x.x
103
+ 0.34.0 - 0.36.0 10.0.x (9.0.x for ``aarch64`` only)
104
+ 0.33.0 9.0.x
105
+ 0.29.0 - 0.32.0 7.0.x, 7.1.x, 8.0.x
106
+ 0.27.0 - 0.28.0 7.0.x
107
+ 0.23.0 - 0.26.0 6.0.x
108
+ 0.21.0 - 0.22.0 5.0.x
109
+ 0.17.0 - 0.20.0 4.0.x
110
+ 0.16.0 - 0.17.0 3.9.x
111
+ 0.13.0 - 0.15.0 3.8.x
112
+ 0.9.0 - 0.12.1 3.7.x
113
+ 0.6.0 - 0.8.0 3.6.x
114
+ 0.1.0 - 0.5.1 3.5.x
115
+ ================= ========================
116
+
117
+ Documentation
118
+ =============
119
+
120
+ You'll find the documentation at http://llvmlite.pydata.org
121
+
122
+
123
+ Pre-built binaries
124
+ ==================
125
+
126
+ We recommend you use the binaries provided by the Numba_ team for
127
+ the Conda_ package manager. You can find them in Numba's `anaconda.org
128
+ channel <https://anaconda.org/numba>`_. For example::
129
+
130
+ $ conda install --channel=numba llvmlite
131
+
132
+ (or, simply, the official llvmlite package provided in the Anaconda_
133
+ distribution)
134
+
135
+ .. _Numba: http://numba.pydata.org/
136
+ .. _Conda: http://conda.pydata.org/
137
+ .. _Anaconda: http://docs.continuum.io/anaconda/index.html
138
+
139
+
140
+ Other build methods
141
+ ===================
142
+
143
+ If you don't want to use our pre-built packages, you can compile
144
+ and install llvmlite yourself. The documentation will teach you how:
145
+ http://llvmlite.pydata.org/en/latest/install/index.html
@@ -0,0 +1,45 @@
1
+ llvmlite/__init__.py,sha256=_UwFsDa2wiXx1WLx0XUV2WkrPZpQwjXTR4sPSNQ2nDM,461
2
+ llvmlite/_version.py,sha256=GvkCH33UNYcxVDKj1knwhZ8J5bICI9TwjH7npPjd4WM,420
3
+ llvmlite/utils.py,sha256=BwgrA2JaYaZiHRafshoZBHiYSBskJQMG_K2F2jbW2-w,695
4
+ llvmlite/binding/__init__.py,sha256=FAVr7gLzepeEKb26NiW5WeQA1C0mmlRkUrKdmPqubUc,404
5
+ llvmlite/binding/analysis.py,sha256=BbCcAAGY0GLAEUek6ZogHkBAmFA9kvpS7333XyIrbhc,2253
6
+ llvmlite/binding/common.py,sha256=eCSnnY4sctgeqVwDv9PrH6jpMI45nJPmAz4rfjbPsf8,742
7
+ llvmlite/binding/config.py,sha256=o9UReyRbcWQLZHzNowSLmoL6hsvZfiOm8Y8uijKteNs,4473
8
+ llvmlite/binding/context.py,sha256=0uEJwi4u0y5pp3gHubmmJYvwT1z3I1jmzAByq-DVnvI,675
9
+ llvmlite/binding/dylib.py,sha256=ypfikOYKiWQZi8h00LhLBXwmPlJ5d86yLOUn01pDjmM,1300
10
+ llvmlite/binding/executionengine.py,sha256=PgUFCVJdGvrxXCZAevMv8nUAL8n29Xm58FYO1XYLafc,11022
11
+ llvmlite/binding/ffi.py,sha256=m7Y1TZC2b1JBptcwzDburElm_fKuGkwrBsKzcYY4zLc,12434
12
+ llvmlite/binding/initfini.py,sha256=_o87ZBtIVDmkN-QU2pypVRKuGOE6XokHOWysJCX9Y_I,2163
13
+ llvmlite/binding/libllvmlite.so,sha256=raeq-xGzzKFVaipUaCZC6A4Lga5qdzsqKKpbCNAqGD0,164778176
14
+ llvmlite/binding/linker.py,sha256=M4bAkoxVAUgxqai5S0_iCHS5EcNRPBX_9zldVqFLV90,489
15
+ llvmlite/binding/module.py,sha256=Zf9GcuCEFf1xtOmP-jXqKtJbj4dO8l9a2NEPKTwsimI,11174
16
+ llvmlite/binding/newpassmanagers.py,sha256=Mzgc9CM0jnmYGL4UAMkWdnfxMoBPVzSYoNFxx2Q44gY,34496
17
+ llvmlite/binding/object_file.py,sha256=qZMTAi6gcVQq2e3KghHNxVH3Ivzr7zxDPecfiZ1Riy8,2664
18
+ llvmlite/binding/options.py,sha256=aDH4SFh6VZ11agtUJO9vAxhVhQkIGAByK9IHKeuRcAI,509
19
+ llvmlite/binding/orcjit.py,sha256=HUWDKicxrYK5s2trdrM_KEmkfvwifrP4E9MxmCb8JSM,11856
20
+ llvmlite/binding/targets.py,sha256=P4YCkQIUkw2puaL_JbdJyawPsxgVtEZ7Vpe2KDLI9KQ,15369
21
+ llvmlite/binding/typeref.py,sha256=kqg757zMfTayKzzjajlHeBjzyB77B9wtN9XzYT5xzx8,7805
22
+ llvmlite/binding/value.py,sha256=GVsScOUMcSx9vrIq2LQiBPlsfjIHGsbcuELyf8wnSnQ,19477
23
+ llvmlite/ir/__init__.py,sha256=rNPtrPLshsPJYO4GegWAU-rpbpiYo0xU-CQb3rt0JtE,258
24
+ llvmlite/ir/_utils.py,sha256=mkpyEMlQ9nHMcWmBMBsJm4S16Y0BfvxBf5brsdMmKio,2001
25
+ llvmlite/ir/builder.py,sha256=23dpZ2Sw6Kq_Db2qRvRqaKEQwhOztJdq2g6l4QfzpBo,33628
26
+ llvmlite/ir/context.py,sha256=tIFLM1FDatctrgN45jrdxbxIPQjgQTRLGoImkCdgcVA,540
27
+ llvmlite/ir/instructions.py,sha256=BFYnbjDBjjI21_ilOMx67Rg_x7OjUlcTjNDFKiry5os,33053
28
+ llvmlite/ir/module.py,sha256=-5cDgxA83a9vGsABTJx9CyxalsH39X8iW3Etd4D0urM,9472
29
+ llvmlite/ir/transforms.py,sha256=pV79pB20m4N_HLmBEksw5VVP8cxyf7AYGDCbS1E7fOQ,1552
30
+ llvmlite/ir/types.py,sha256=_qNlE5QhAMc5aeiTbmH44JRiN7r1-Nbl9eADNBns4CQ,19909
31
+ llvmlite/ir/values.py,sha256=FkRpEoG2ur3TqpFwj7co5ymYCnADU5EcmsjaOF--b90,34023
32
+ llvmlite/tests/__init__.py,sha256=TBHEOsEq-9M9rF94nES2HxefA-7GYwNE00Y7gTkHrD8,1378
33
+ llvmlite/tests/__main__.py,sha256=10_On1rLj4CX1xsBJ9TbjULvNSp_K0qk9U1N6azUTUw,40
34
+ llvmlite/tests/customize.py,sha256=85Af1gyZ5rtXXI3qpeTc2DXMrgETjv7hrLN-73A7Fhg,13268
35
+ llvmlite/tests/refprune_proto.py,sha256=w3hRtkd4VtcfoHYkZkjZJgzOJCW6TxorK-JFohxNZME,8702
36
+ llvmlite/tests/test_binding.py,sha256=xFIPijurAz6lDGMn9znnRPwFj5UMd4emFqh3PtsZutY,112447
37
+ llvmlite/tests/test_ir.py,sha256=SHZcrQ8b2Dx9Wey8djktIQFS8xIeITZYHCjeBQPPWEE,122399
38
+ llvmlite/tests/test_refprune.py,sha256=BGLf4IwZOoRAGy2qjyKNJJzQviG778FTjMz2sHbGFrA,15660
39
+ llvmlite/tests/test_valuerepr.py,sha256=57MaGznJUnqCf0etajnOCoBRue5-nmFTx1bds_5atlE,1989
40
+ llvmlite-0.46.0b1.dist-info/METADATA,sha256=UEX9pbgYpcVZc0GqhWe3Z0BtNseWWcNkgJ6v7MGdVNc,4914
41
+ llvmlite-0.46.0b1.dist-info/WHEEL,sha256=H_oAaC1vpGPGUZ1k2KL7ZUxCpADBw9Nr_D4G8YgTVsY,154
42
+ llvmlite-0.46.0b1.dist-info/top_level.txt,sha256=WJi8Gq92jA2wv_aV1Oshp9iZ-zMa43Kcmw80kWeGYGA,9
43
+ llvmlite-0.46.0b1.dist-info/RECORD,,
44
+ llvmlite-0.46.0b1.dist-info/licenses/LICENSE,sha256=S5pyZLAROnsybuhPwkS3OZG1NbSDPkpW1YdQ8qciUNw,1298
45
+ llvmlite-0.46.0b1.dist-info/licenses/LICENSE.thirdparty,sha256=3FJyk8_C5LTVkELgsgRmcWKEXYVIZRky9anS9K38kos,12561
@@ -0,0 +1,6 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp314-cp314-manylinux_2_27_aarch64
5
+ Tag: cp314-cp314-manylinux_2_28_aarch64
6
+
@@ -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 @@
1
+ llvmlite