halide 19.0.0__cp310-cp310-macosx_11_0_arm64.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.
Files changed (84) hide show
  1. halide/__init__.py +39 -0
  2. halide/_generator_helpers.py +835 -0
  3. halide/bin/adams2019_retrain_cost_model +0 -0
  4. halide/bin/adams2019_weightsdir_to_weightsfile +0 -0
  5. halide/bin/anderson2021_retrain_cost_model +0 -0
  6. halide/bin/anderson2021_weightsdir_to_weightsfile +0 -0
  7. halide/bin/featurization_to_sample +0 -0
  8. halide/bin/gengen +0 -0
  9. halide/bin/get_host_target +0 -0
  10. halide/halide_.cpython-310-darwin.so +0 -0
  11. halide/imageio.py +60 -0
  12. halide/include/Halide.h +35293 -0
  13. halide/include/HalideBuffer.h +2618 -0
  14. halide/include/HalidePyTorchCudaHelpers.h +64 -0
  15. halide/include/HalidePyTorchHelpers.h +120 -0
  16. halide/include/HalideRuntime.h +2221 -0
  17. halide/include/HalideRuntimeCuda.h +89 -0
  18. halide/include/HalideRuntimeD3D12Compute.h +91 -0
  19. halide/include/HalideRuntimeHexagonDma.h +104 -0
  20. halide/include/HalideRuntimeHexagonHost.h +157 -0
  21. halide/include/HalideRuntimeMetal.h +112 -0
  22. halide/include/HalideRuntimeOpenCL.h +119 -0
  23. halide/include/HalideRuntimeQurt.h +32 -0
  24. halide/include/HalideRuntimeVulkan.h +137 -0
  25. halide/include/HalideRuntimeWebGPU.h +44 -0
  26. halide/lib/cmake/Halide/FindHalide_LLVM.cmake +152 -0
  27. halide/lib/cmake/Halide/FindV8.cmake +33 -0
  28. halide/lib/cmake/Halide/Halide-shared-deps.cmake +0 -0
  29. halide/lib/cmake/Halide/Halide-shared-targets-release.cmake +29 -0
  30. halide/lib/cmake/Halide/Halide-shared-targets.cmake +154 -0
  31. halide/lib/cmake/Halide/HalideConfig.cmake +162 -0
  32. halide/lib/cmake/Halide/HalideConfigVersion.cmake +65 -0
  33. halide/lib/cmake/HalideHelpers/FindHalide_WebGPU.cmake +27 -0
  34. halide/lib/cmake/HalideHelpers/Halide-Interfaces-release.cmake +116 -0
  35. halide/lib/cmake/HalideHelpers/Halide-Interfaces.cmake +236 -0
  36. halide/lib/cmake/HalideHelpers/HalideGeneratorHelpers.cmake +1056 -0
  37. halide/lib/cmake/HalideHelpers/HalideHelpersConfig.cmake +28 -0
  38. halide/lib/cmake/HalideHelpers/HalideHelpersConfigVersion.cmake +54 -0
  39. halide/lib/cmake/HalideHelpers/HalideTargetHelpers.cmake +99 -0
  40. halide/lib/cmake/HalideHelpers/MutexCopy.ps1 +31 -0
  41. halide/lib/cmake/HalideHelpers/TargetExportScript.cmake +55 -0
  42. halide/lib/cmake/Halide_Python/Halide_Python-targets-release.cmake +30 -0
  43. halide/lib/cmake/Halide_Python/Halide_Python-targets.cmake +125 -0
  44. halide/lib/cmake/Halide_Python/Halide_PythonConfig.cmake +26 -0
  45. halide/lib/cmake/Halide_Python/Halide_PythonConfigVersion.cmake +65 -0
  46. halide/lib/libHalide.dylib +0 -0
  47. halide/lib/libHalidePyStubs.a +0 -0
  48. halide/lib/libHalide_GenGen.a +0 -0
  49. halide/lib/libautoschedule_adams2019.so +0 -0
  50. halide/lib/libautoschedule_anderson2021.so +0 -0
  51. halide/lib/libautoschedule_li2018.so +0 -0
  52. halide/lib/libautoschedule_mullapudi2016.so +0 -0
  53. halide/share/doc/Halide/LICENSE.txt +233 -0
  54. halide/share/doc/Halide/README.md +439 -0
  55. halide/share/doc/Halide/doc/BuildingHalideWithCMake.md +626 -0
  56. halide/share/doc/Halide/doc/CodeStyleCMake.md +393 -0
  57. halide/share/doc/Halide/doc/FuzzTesting.md +104 -0
  58. halide/share/doc/Halide/doc/HalideCMakePackage.md +812 -0
  59. halide/share/doc/Halide/doc/Hexagon.md +73 -0
  60. halide/share/doc/Halide/doc/Python.md +844 -0
  61. halide/share/doc/Halide/doc/RunGen.md +283 -0
  62. halide/share/doc/Halide/doc/Testing.md +125 -0
  63. halide/share/doc/Halide/doc/Vulkan.md +287 -0
  64. halide/share/doc/Halide/doc/WebAssembly.md +228 -0
  65. halide/share/doc/Halide/doc/WebGPU.md +128 -0
  66. halide/share/tools/RunGen.h +1470 -0
  67. halide/share/tools/RunGenMain.cpp +642 -0
  68. halide/share/tools/adams2019_autotune_loop.sh +227 -0
  69. halide/share/tools/anderson2021_autotune_loop.sh +591 -0
  70. halide/share/tools/halide_benchmark.h +240 -0
  71. halide/share/tools/halide_image.h +31 -0
  72. halide/share/tools/halide_image_info.h +318 -0
  73. halide/share/tools/halide_image_io.h +2794 -0
  74. halide/share/tools/halide_malloc_trace.h +102 -0
  75. halide/share/tools/halide_thread_pool.h +161 -0
  76. halide/share/tools/halide_trace_config.h +559 -0
  77. halide-19.0.0.data/data/share/cmake/Halide/HalideConfig.cmake +6 -0
  78. halide-19.0.0.data/data/share/cmake/Halide/HalideConfigVersion.cmake +65 -0
  79. halide-19.0.0.data/data/share/cmake/HalideHelpers/HalideHelpersConfig.cmake +6 -0
  80. halide-19.0.0.data/data/share/cmake/HalideHelpers/HalideHelpersConfigVersion.cmake +54 -0
  81. halide-19.0.0.dist-info/METADATA +301 -0
  82. halide-19.0.0.dist-info/RECORD +84 -0
  83. halide-19.0.0.dist-info/WHEEL +5 -0
  84. halide-19.0.0.dist-info/licenses/LICENSE.txt +233 -0
@@ -0,0 +1,301 @@
1
+ Metadata-Version: 2.1
2
+ Name: halide
3
+ Version: 19.0.0
4
+ Summary: Halide is a programming language designed to make it easier to write high-performance image and array processing code.
5
+ Keywords: array,compiler,domain-specific language,dsl,gpu,hexagon,image processing,machine learning,performance,programming language
6
+ Author-Email: The Halide team <halide-dev@lists.csail.mit.edu>
7
+ Maintainer-Email: Alex Reinking <areinking@adobe.com>
8
+ License: Copyright (c) 2012-2020 MIT CSAIL, Google, Facebook, Adobe, NVIDIA CORPORATION, and other contributors.
9
+
10
+ Developed by:
11
+
12
+ The Halide team
13
+ http://halide-lang.org
14
+
15
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
16
+ this software and associated documentation files (the "Software"), to deal in
17
+ the Software without restriction, including without limitation the rights to
18
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
19
+ of the Software, and to permit persons to whom the Software is furnished to do
20
+ so, subject to the following conditions:
21
+
22
+ The above copyright notice and this permission notice shall be included in all
23
+ copies or substantial portions of the Software.
24
+
25
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
26
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
27
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
28
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
29
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
30
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
31
+ SOFTWARE.
32
+
33
+ -----
34
+
35
+ apps/bgu is Copyright 2016 Google Inc. and is Licensed under the Apache License,
36
+ Version 2.0 (the "License"); you may not use this file except in compliance
37
+ with the License.
38
+
39
+ Apache License
40
+
41
+ Version 2.0, January 2004
42
+
43
+ http://www.apache.org/licenses/
44
+
45
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
46
+
47
+ 1. Definitions.
48
+
49
+ "License" shall mean the terms and conditions for use, reproduction, and
50
+ distribution as defined by Sections 1 through 9 of this document.
51
+
52
+ "Licensor" shall mean the copyright owner or entity authorized by the
53
+ copyright owner that is granting the License.
54
+
55
+ "Legal Entity" shall mean the union of the acting entity and all other
56
+ entities that control, are controlled by, or are under common control with
57
+ that entity. For the purposes of this definition, "control" means (i) the
58
+ power, direct or indirect, to cause the direction or management of such
59
+ entity, whether by contract or otherwise, or (ii) ownership of fifty percent
60
+ (50%) or more of the outstanding shares, or (iii) beneficial ownership of such
61
+ entity.
62
+
63
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
64
+ permissions granted by this License.
65
+
66
+ "Source" form shall mean the preferred form for making modifications,
67
+ including but not limited to software source code, documentation source, and
68
+ configuration files.
69
+
70
+ "Object" form shall mean any form resulting from mechanical transformation or
71
+ translation of a Source form, including but not limited to compiled object
72
+ code, generated documentation, and conversions to other media types.
73
+
74
+ "Work" shall mean the work of authorship, whether in Source or Object form,
75
+ made available under the License, as indicated by a copyright notice that is
76
+ included in or attached to the work (an example is provided in the Appendix
77
+ below).
78
+
79
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
80
+ is based on (or derived from) the Work and for which the editorial revisions,
81
+ annotations, elaborations, or other modifications represent, as a whole, an
82
+ original work of authorship. For the purposes of this License, Derivative
83
+ Works shall not include works that remain separable from, or merely link (or
84
+ bind by name) to the interfaces of, the Work and Derivative Works thereof.
85
+
86
+ "Contribution" shall mean any work of authorship, including the original
87
+ version of the Work and any modifications or additions to that Work or
88
+ Derivative Works thereof, that is intentionally submitted to Licensor for
89
+ inclusion in the Work by the copyright owner or by an individual or Legal
90
+ Entity authorized to submit on behalf of the copyright owner. For the purposes
91
+ of this definition, "submitted" means any form of electronic, verbal, or
92
+ written communication sent to the Licensor or its representatives, including
93
+ but not limited to communication on electronic mailing lists, source code
94
+ control systems, and issue tracking systems that are managed by, or on behalf
95
+ of, the Licensor for the purpose of discussing and improving the Work, but
96
+ excluding communication that is conspicuously marked or otherwise designated
97
+ in writing by the copyright owner as "Not a Contribution."
98
+
99
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
100
+ of whom a Contribution has been received by Licensor and subsequently
101
+ incorporated within the Work.
102
+
103
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
104
+
105
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
106
+
107
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
108
+
109
+ (a) You must give any other recipients of the Work or Derivative Works a copy
110
+ of this License; and
111
+
112
+ (b) You must cause any modified files to carry prominent notices stating that
113
+ You changed the files; and
114
+
115
+ (c) You must retain, in the Source form of any Derivative Works that You
116
+ distribute, all copyright, patent, trademark, and attribution notices from the
117
+ Source form of the Work, excluding those notices that do not pertain to any
118
+ part of the Derivative Works; and
119
+
120
+ (d) If the Work includes a "NOTICE" text file as part of its distribution,
121
+ then any Derivative Works that You distribute must include a readable copy of
122
+ the attribution notices contained within such NOTICE file, excluding those
123
+ notices that do not pertain to any part of the Derivative Works, in at least
124
+ one of the following places: within a NOTICE text file distributed as part of
125
+ the Derivative Works; within the Source form or documentation, if provided
126
+ along with the Derivative Works; or, within a display generated by the
127
+ Derivative Works, if and wherever such third-party notices normally appear.
128
+ The contents of the NOTICE file are for informational purposes only and do not
129
+ modify the License. You may add Your own attribution notices within Derivative
130
+ Works that You distribute, alongside or as an addendum to the NOTICE text from
131
+ the Work, provided that such additional attribution notices cannot be
132
+ construed as modifying the License.
133
+
134
+ You may add Your own copyright statement to Your modifications and may provide
135
+ additional or different license terms and conditions for use, reproduction, or
136
+ distribution of Your modifications, or for any such Derivative Works as a
137
+ whole, provided Your use, reproduction, and distribution of the Work otherwise
138
+ complies with the conditions stated in this License.
139
+
140
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
141
+
142
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
143
+
144
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
145
+
146
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
147
+
148
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
149
+
150
+ END OF TERMS AND CONDITIONS
151
+
152
+ -----
153
+
154
+ apps/support/cmdline.h is Copyright (c) 2009, Hideyuki Tanaka and is licensed
155
+ under the BSD 3-Clause license.
156
+
157
+ Redistribution and use in source and binary forms, with or without
158
+ modification, are permitted provided that the following conditions are met:
159
+ * Redistributions of source code must retain the above copyright
160
+ notice, this list of conditions and the following disclaimer.
161
+ * Redistributions in binary form must reproduce the above copyright
162
+ notice, this list of conditions and the following disclaimer in the
163
+ documentation and/or other materials provided with the distribution.
164
+ * Neither the name of the <organization> nor the
165
+ names of its contributors may be used to endorse or promote products
166
+ derived from this software without specific prior written permission.
167
+
168
+ THIS SOFTWARE IS PROVIDED BY <copyright holder> ''AS IS'' AND ANY
169
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
170
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
171
+ DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
172
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
173
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
174
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
175
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
176
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
177
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
178
+
179
+ ----
180
+
181
+ dependencies/spirv is Copyright (c) 2014-2018 The Khronos Group Inc.
182
+
183
+ Permission is hereby granted, free of charge, to any person obtaining a copy
184
+ of this software and/or associated documentation files (the "Materials"),
185
+ to deal in the Materials without restriction, including without limitation
186
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
187
+ and/or sell copies of the Materials, and to permit persons to whom the
188
+ Materials are furnished to do so, subject to the following conditions:
189
+
190
+ The above copyright notice and this permission notice shall be included in
191
+ all copies or substantial portions of the Materials.
192
+
193
+ MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
194
+ STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
195
+ HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/
196
+
197
+ THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
198
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
199
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
200
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
201
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
202
+ FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
203
+ IN THE MATERIALS.
204
+
205
+
206
+ ----
207
+
208
+ dependencies/vulkan is Copyright (c) 2014-2017 The Khronos Group Inc.
209
+
210
+ Licensed under the Apache License, Version 2.0 (the "License");
211
+ you may not use this file except in compliance with the License.
212
+ You may obtain a copy of the License at
213
+
214
+ http://www.apache.org/licenses/LICENSE-2.0
215
+
216
+ Unless required by applicable law or agreed to in writing, software
217
+ distributed under the License is distributed on an "AS IS" BASIS,
218
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
219
+ See the License for the specific language governing permissions and
220
+ limitations under the License.
221
+
222
+ ----
223
+
224
+ apps/linear_algebra/include/cblas.h is licensed under the BLAS license.
225
+
226
+ The reference BLAS is a freely-available software package. It is available from
227
+ netlib via anonymous ftp and the World Wide Web. Thus, it can be included in
228
+ commercial software packages (and has been). We only ask that proper credit be
229
+ given to the authors.
230
+
231
+ Like all software, it is copyrighted. It is not trademarked, but we do ask the
232
+ following:
233
+
234
+ If you modify the source for these routines we ask that you change the name of
235
+ the routine and comment the changes made to the original.
236
+
237
+ We will gladly answer any questions regarding the software. If a modification is
238
+ done, however, it is the responsibility of the person who modified the routine
239
+ to provide support.
240
+ Classifier: Development Status :: 5 - Production/Stable
241
+ Classifier: Environment :: GPU
242
+ Classifier: Environment :: GPU :: NVIDIA CUDA
243
+ Classifier: Environment :: WebAssembly
244
+ Classifier: Intended Audience :: Developers
245
+ Classifier: Intended Audience :: Science/Research
246
+ Classifier: License :: OSI Approved :: MIT License
247
+ Classifier: Natural Language :: English
248
+ Classifier: Operating System :: MacOS
249
+ Classifier: Operating System :: Microsoft :: Windows
250
+ Classifier: Operating System :: POSIX
251
+ Classifier: Programming Language :: C++
252
+ Classifier: Programming Language :: Python :: 3
253
+ Classifier: Programming Language :: Python :: 3 :: Only
254
+ Classifier: Programming Language :: Python :: 3.8
255
+ Classifier: Programming Language :: Python :: 3.9
256
+ Classifier: Programming Language :: Python :: 3.10
257
+ Classifier: Programming Language :: Python :: 3.11
258
+ Classifier: Programming Language :: Python :: 3.12
259
+ Classifier: Programming Language :: Python :: 3.13
260
+ Classifier: Programming Language :: Python :: Implementation :: CPython
261
+ Classifier: Topic :: Multimedia :: Graphics
262
+ Classifier: Topic :: Scientific/Engineering
263
+ Classifier: Topic :: Scientific/Engineering :: Artificial Intelligence
264
+ Classifier: Topic :: Scientific/Engineering :: Image Processing
265
+ Classifier: Topic :: Software Development :: Code Generators
266
+ Classifier: Topic :: Software Development :: Compilers
267
+ Classifier: Topic :: Software Development :: Libraries
268
+ Project-URL: Homepage, https://halide-lang.org
269
+ Project-URL: Documentation, https://github.com/halide/Halide/blob/main/doc/Python.md
270
+ Project-URL: Documentation (c++), https://halide-lang.org/docs
271
+ Project-URL: Issues, https://github.com/halide/Halide/issues
272
+ Project-URL: Repository, https://github.com/halide/Halide.git
273
+ Requires-Python: >=3.8
274
+ Requires-Dist: numpy
275
+ Requires-Dist: imageio
276
+ Description-Content-Type: text/markdown
277
+
278
+ Halide is a programming language designed to make it easier to write
279
+ high-performance image and array processing code on modern machines. Halide
280
+ currently targets:
281
+
282
+ - CPU architectures: X86, ARM, Hexagon, PowerPC, RISC-V
283
+ - Operating systems: Linux, Windows, macOS, Android, iOS, Qualcomm QuRT
284
+ - GPU Compute APIs: CUDA, OpenCL, Apple Metal, Microsoft Direct X 12, Vulkan
285
+
286
+ Rather than being a standalone programming language, Halide is embedded in
287
+ Python. This means you write Python code that builds an in-memory representation
288
+ of a Halide pipeline using Halide's Python API. You can then compile this
289
+ representation to an object file, or JIT-compile it and run it in the same
290
+ process.
291
+
292
+ ## Using Halide from C++
293
+ Halide is also available as a C++ library. This package provides the development
294
+ files necessary to use Halide from C++, including a CMake package. On Linux and
295
+ macOS, CMake's `find_package` command should find Halide as long as you're in
296
+ the same virtual environment you installed it in. On Windows, you will need to
297
+ add the virtual environment root directory to `CMAKE_PREFIX_PATH`. This can be
298
+ done by running `set CMAKE_PREFIX_PATH=%VIRTUAL_ENV%` in `cmd`.
299
+
300
+ Other build systems can find the Halide root path by running `python -c
301
+ "import halide; print(halide.install_dir())"`.
@@ -0,0 +1,84 @@
1
+ halide-19.0.0.data/data/share/cmake/Halide/HalideConfigVersion.cmake,sha256=yQY5A2h24knjbAmJZIu6NUjz6BqMMPP_pv4QPAHqpms,2765
2
+ halide-19.0.0.data/data/share/cmake/Halide/HalideConfig.cmake,sha256=sqi_8jMsAZhgez3ATZpi9MlmE1KEnOcr_PPfyQVQMy4,172
3
+ halide-19.0.0.data/data/share/cmake/HalideHelpers/HalideHelpersConfigVersion.cmake,sha256=iQ0otRbPvbrNlDaM4hF_xdnYSWJMqWxSXNnnmVtie_Y,2306
4
+ halide-19.0.0.data/data/share/cmake/HalideHelpers/HalideHelpersConfig.cmake,sha256=osHUnnXLUHiWSTsSnPZMjWJ_vuqlKABFqFJzPSQIWhQ,186
5
+ halide/imageio.py,sha256=1eDercwoMG1yJSVLgF08TJPOXCzT9p8TDTaE5rFC6LE,2219
6
+ halide/__init__.py,sha256=WRReVhzbH_fdWJFXkd11_-S1QhxECIwHo-X_yRBtLRI,809
7
+ halide/_generator_helpers.py,sha256=IXUkW3-s0aTlADm6mdMJAVB7tX3ZZ5hyjSu6_LcEt88,31201
8
+ halide/halide_.cpython-310-darwin.so,sha256=MVyZ_KXfe2IBDI8oYx4x3caecPeiENVv_7XZqjf9q4I,3468416
9
+ halide/bin/gengen,sha256=u_fsuBF4iPQz7bzCak7XlEbMO08ABtClk1x1o2wvv_k,68160
10
+ halide/bin/get_host_target,sha256=WIrbKOZiEzywKTumQCmNUB7CDLHOXzyzbFK63qoU7vE,69632
11
+ halide/bin/anderson2021_weightsdir_to_weightsfile,sha256=Ih6cMg_QLoYpDJqiG0MJRjyr5jtlbd-B_Ge3FkaPpCc,73272
12
+ halide/bin/adams2019_weightsdir_to_weightsfile,sha256=Iwe1ul2fSAzwO6J4d68lC_-4kqpoCkRxLHNvyeMNWSg,73264
13
+ halide/bin/anderson2021_retrain_cost_model,sha256=NQfPjl_TEAojR4uwXCMCfBJfeMDvLgihqbMQ3UndnUI,459472
14
+ halide/bin/adams2019_retrain_cost_model,sha256=tp8zOJZDtg6-ddDMZRzkSSMJ8dPav5lmCMZ8CmqMjho,543376
15
+ halide/bin/featurization_to_sample,sha256=j8JR0guEppBFBEMOxY--7Zgspy5c1AQ5CMPmficYHFY,56600
16
+ halide/include/Halide.h,sha256=oCU2h_DjFuAipEjMH838F1ImJtVhp7XYYuIbNyMVBXs,1330209
17
+ halide/include/HalidePyTorchHelpers.h,sha256=KQvEbloRzaXBRNqBeEiXGJXWJqlyTKbr0GPXBIuuHmk,3980
18
+ halide/include/HalideRuntimeOpenCL.h,sha256=46INSeAxKZi9pOVEOYrRQLwwkX-1yGmHedq-I9xRlTQ,5463
19
+ halide/include/HalideRuntimeD3D12Compute.h,sha256=-DbkU_E8kItyRaegkw-sBuodSZ69KWNctL_YuwyI9i4,4397
20
+ halide/include/HalideRuntimeVulkan.h,sha256=J7XFZE1KoajZmQQMprfcTtRGB_XsXVxaSTIl7EvXRVE,6138
21
+ halide/include/HalideRuntimeHexagonDma.h,sha256=cDNakgVfAgishu7VkMpiFZoBhfJ515gdvdFqw7Xgjhk,4241
22
+ halide/include/HalideRuntimeCuda.h,sha256=gh9sO7tZtrbU6y8sIcYcpgVWR2lfJBP2bVxVzpGPveU,3863
23
+ halide/include/HalideRuntimeQurt.h,sha256=KcgOGSqetZxIjRmuiq0eq6XsFPvODViJmM-mdJgMnhA,770
24
+ halide/include/HalideRuntime.h,sha256=ksDPLXhYCXr3Jm0dnFgOQ9rtaHSuMbN7AqJvSsTaN_I,101981
25
+ halide/include/HalideBuffer.h,sha256=4efcOaxxNCJFDkjdioZAvtHKFGz7eFq_DhTSbuEQC8k,107613
26
+ halide/include/HalideRuntimeMetal.h,sha256=Bf6zBOmCklpEhGFGgvy97o1fEl-lvPAzAcZ0jpqfnY4,5218
27
+ halide/include/HalideRuntimeWebGPU.h,sha256=4iELmX40bSvnRDaQ9Z4FsM4Yi9LorzL2lXH-Paa1obw,1421
28
+ halide/include/HalidePyTorchCudaHelpers.h,sha256=RYHhV33QMyK7e9zrqpOZltHF_JVit7X67R_GvPbhvj0,1807
29
+ halide/include/HalideRuntimeHexagonHost.h,sha256=8LuDKN_04BsPWskRF69RgnAItKysAaeb2LdHccisl4w,7032
30
+ halide/lib/libHalide.dylib,sha256=mREnVlumY01tjKzQ96I_OkTsjtgbc7r87c9raOVQf68,126271728
31
+ halide/lib/libautoschedule_mullapudi2016.so,sha256=1x1kwJ_FZzVuoQuS1T7hEe8RvZzpNXrrdXymh3FsGK4,401968
32
+ halide/lib/libautoschedule_anderson2021.so,sha256=hQAdnXObI8aj3BAFY8DtMiPTccHI2Y_rml2PpWzQZAU,929696
33
+ halide/lib/libHalide_GenGen.a,sha256=KN8pyuy5R_Rm2yX5NoNGmg98FBM4YLLXXO5vQgI3EEE,776
34
+ halide/lib/libautoschedule_adams2019.so,sha256=lBO4bDQDhSCc4smwOjI1Hxe70Iwxd7fepPBBIjv544E,801408
35
+ halide/lib/libHalidePyStubs.a,sha256=mULu-bNrqwNcixUe0JGEdPHh8TLc7OD8Bu5Q7jg3Oqk,267888
36
+ halide/lib/libautoschedule_li2018.so,sha256=WDLF28R4rpJ5-LTyB8lVqX0L5Xu-hIsiyL1fWQ2l8Jk,203600
37
+ halide/lib/cmake/Halide/HalideConfigVersion.cmake,sha256=yQY5A2h24knjbAmJZIu6NUjz6BqMMPP_pv4QPAHqpms,2765
38
+ halide/lib/cmake/Halide/FindV8.cmake,sha256=1QrtNejBXL14UKocHdE1W0QdHqsbEILG-5sMCZRnsMA,948
39
+ halide/lib/cmake/Halide/Halide-shared-targets.cmake,sha256=CucIxD-KNIEwQxxBqYAffg0O-Sk4UXTcDOegJ-uH6iw,5846
40
+ halide/lib/cmake/Halide/Halide-shared-deps.cmake,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ halide/lib/cmake/Halide/FindHalide_LLVM.cmake,sha256=DcHM7aQdRvacfh1AXv_P3lnrPmkW02ZrbgnVFN7duGo,7011
42
+ halide/lib/cmake/Halide/Halide-shared-targets-release.cmake,sha256=aW9vIxIOUBrxqLzCBo08VbH1eig4Qli-8G8t4040xuk,1331
43
+ halide/lib/cmake/Halide/HalideConfig.cmake,sha256=AhC4RLzCk7a7vUahebM3O4jhK5LY-KFya76v9F3qJEs,5163
44
+ halide/lib/cmake/HalideHelpers/Halide-Interfaces-release.cmake,sha256=x-SAdzYUgtSjmrKUng7gOocI8xkwsEJWarb1VNfwQpo,6358
45
+ halide/lib/cmake/HalideHelpers/HalideTargetHelpers.cmake,sha256=ytiDU1TSTFT9a8vorpkegbTNWPFy96JzM4NUDQOp-kw,3265
46
+ halide/lib/cmake/HalideHelpers/HalideGeneratorHelpers.cmake,sha256=CoqyaHaWLrOM2SmqavUDBjt3M-3pS-sLoGmHf7cw6cs,41016
47
+ halide/lib/cmake/HalideHelpers/FindHalide_WebGPU.cmake,sha256=gojrwQpa8_5Tj7k_qiccz3tt7m6kjMzbOXBXjkX8ZlM,744
48
+ halide/lib/cmake/HalideHelpers/Halide-Interfaces.cmake,sha256=BlwleCRQil7dSz8aYIonqMBo2cdoChhvl5fkDyfBcFQ,9283
49
+ halide/lib/cmake/HalideHelpers/TargetExportScript.cmake,sha256=w5ziSC1py5PD5Ru4aAp8IpPgUYadCcrbLKFSvdaXW0s,2498
50
+ halide/lib/cmake/HalideHelpers/HalideHelpersConfigVersion.cmake,sha256=iQ0otRbPvbrNlDaM4hF_xdnYSWJMqWxSXNnnmVtie_Y,2306
51
+ halide/lib/cmake/HalideHelpers/MutexCopy.ps1,sha256=KS8yZVYBIC9jqDBBkzsiPMLRHp2WPk2r99sEi-6gTqo,811
52
+ halide/lib/cmake/HalideHelpers/HalideHelpersConfig.cmake,sha256=ah28sDKeGvq31zFsjrNjtv_yPOpwb3Rhz-UKqi-oJRU,1046
53
+ halide/lib/cmake/Halide_Python/Halide_Python-targets.cmake,sha256=aeTVbM91X0eHp_MQByo8NAhmoHCwoRaMGFrYA_ziA5E,4942
54
+ halide/lib/cmake/Halide_Python/Halide_Python-targets-release.cmake,sha256=4RzhdmLyJ2uGxHhOc4bQmTryJOueu6sglA-WF26K_ig,1391
55
+ halide/lib/cmake/Halide_Python/Halide_PythonConfigVersion.cmake,sha256=yQY5A2h24knjbAmJZIu6NUjz6BqMMPP_pv4QPAHqpms,2765
56
+ halide/lib/cmake/Halide_Python/Halide_PythonConfig.cmake,sha256=f3gePJ5kUCBEdEBeJo6DtU1X0WCxtFDlTvuFCwYIRcY,937
57
+ halide/share/tools/halide_image.h,sha256=Dhe3ezjuu7E_FbAl6GZnTbIPvgYJVh6orALM3mDcl4s,743
58
+ halide/share/tools/RunGenMain.cpp,sha256=mO5eXG_WXswtX1b6N2zIAYo3JAAUpTQszsDksfTr9Ko,23495
59
+ halide/share/tools/halide_image_io.h,sha256=8zQEhW4s05q-RvtumRzKHwP_0RQZsYZTEsSLxgxEXWY,91166
60
+ halide/share/tools/RunGen.h,sha256=V4Cs-XkDKcfhIXZ82dmbAmS4yG7azm8Xj2i6SV6y_hw,58572
61
+ halide/share/tools/halide_thread_pool.h,sha256=BfRaDvX7hOczZ0XAMpFL1yLUEEx35tHQ2Lws9aeBdbA,4870
62
+ halide/share/tools/halide_image_info.h,sha256=deLoE5S4ORiFttY37LUoa4DirLhezjTjOGoERApxTfg,10670
63
+ halide/share/tools/adams2019_autotune_loop.sh,sha256=eOJR2b5HJpHje3lGQKj_JZ_xJ8inqETgkVhNmVN1tpk,7685
64
+ halide/share/tools/halide_malloc_trace.h,sha256=ZPIxzW9x5pZjgQlr8s-rfqBkiEMWRR-9xahd0dSOh24,3379
65
+ halide/share/tools/halide_trace_config.h,sha256=bZY-ISjpnXtpENMfPCdcBi6A2CvG4-i1FEiM8PRbYew,19514
66
+ halide/share/tools/anderson2021_autotune_loop.sh,sha256=RUqA9Sv5zfZOqTuOGLjVzg_IJvzAUKHmgiwc9krvw68,19629
67
+ halide/share/tools/halide_benchmark.h,sha256=8Ina4bGgfaanqXc12vqo8My9ow4YXuNavO9ES3N2ctQ,9595
68
+ halide/share/doc/Halide/README.md,sha256=OByjDPPJygJj4s_ea0-MtcAZqY7ih0YYPvC_ULFxn6U,18403
69
+ halide/share/doc/Halide/LICENSE.txt,sha256=rjO9x2esZo_C5BdWRx5xOwDjcmt_HBwykNUYZAQfktI,14717
70
+ halide/share/doc/Halide/doc/BuildingHalideWithCMake.md,sha256=GbRh8fDsdytUMw2OZM-3HMVWghsxNDpm15f6-pkx4BM,28281
71
+ halide/share/doc/Halide/doc/RunGen.md,sha256=Fm1cqMXDKl4iaCbgOcl7eranhzxnK3qNwptrmRJddN0,12354
72
+ halide/share/doc/Halide/doc/Python.md,sha256=4W0z9MGaJgXeNUe0XfgskGIR2PGmuOPZVSgHHnTBKhs,34266
73
+ halide/share/doc/Halide/doc/WebAssembly.md,sha256=Zuma-96mdnb4Y86SAPwYbMmyediO-6mG9kNimzZ41Gw,10693
74
+ halide/share/doc/Halide/doc/FuzzTesting.md,sha256=WKAa3fUFLLYvbH1I-yjfDd0lh9oyHgzxVLEUmpiUOSQ,3969
75
+ halide/share/doc/Halide/doc/Testing.md,sha256=LhXBUqAEZJzK-Z2zO7jpFvt--WpWo0mDnbm8mY0Z33I,4994
76
+ halide/share/doc/Halide/doc/WebGPU.md,sha256=aZtwg6MJK0VuldJneqGUQEFGw5jjZzIhWLvpmrkPn9Y,5329
77
+ halide/share/doc/Halide/doc/CodeStyleCMake.md,sha256=IPCWJD5P9NVj_xGMzv6U4ddqeT_WivjEczflvjtCR4Q,24923
78
+ halide/share/doc/Halide/doc/Hexagon.md,sha256=Hor5-5kyx_iKTcr1g5wyNTdZzCqzRTpPpNwxtdE6ynY,3085
79
+ halide/share/doc/Halide/doc/Vulkan.md,sha256=4aTTNeVN_jsrZ_GfDkN0ZVid-sIjZ7GkVJ6iJYMN5mc,12677
80
+ halide/share/doc/Halide/doc/HalideCMakePackage.md,sha256=O0zgUbxFwQ_7odSuU9ymXbzA0FyfJsniqYJZmwvNx3o,38351
81
+ halide-19.0.0.dist-info/RECORD,,
82
+ halide-19.0.0.dist-info/WHEEL,sha256=65yimfyHZXB1r9zxB6XwspsUUQ9dO18Pytaz2oBbL5U,114
83
+ halide-19.0.0.dist-info/METADATA,sha256=Svo_J23xw5OJpueqdIYbMkV7dgawoN4dNtZCEPzjy4k,20120
84
+ halide-19.0.0.dist-info/licenses/LICENSE.txt,sha256=rjO9x2esZo_C5BdWRx5xOwDjcmt_HBwykNUYZAQfktI,14717
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: scikit-build-core 0.10.5
3
+ Root-Is-Purelib: false
4
+ Tag: cp310-cp310-macosx_11_0_arm64
5
+
@@ -0,0 +1,233 @@
1
+ Copyright (c) 2012-2020 MIT CSAIL, Google, Facebook, Adobe, NVIDIA CORPORATION, and other contributors.
2
+
3
+ Developed by:
4
+
5
+ The Halide team
6
+ http://halide-lang.org
7
+
8
+ Permission is hereby granted, free of charge, to any person obtaining a copy of
9
+ this software and associated documentation files (the "Software"), to deal in
10
+ the Software without restriction, including without limitation the rights to
11
+ use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
12
+ of the Software, and to permit persons to whom the Software is furnished to do
13
+ so, subject to the following conditions:
14
+
15
+ The above copyright notice and this permission notice shall be included in all
16
+ copies or substantial portions of the Software.
17
+
18
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
19
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
20
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
21
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
22
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
23
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
24
+ SOFTWARE.
25
+
26
+ -----
27
+
28
+ apps/bgu is Copyright 2016 Google Inc. and is Licensed under the Apache License,
29
+ Version 2.0 (the "License"); you may not use this file except in compliance
30
+ with the License.
31
+
32
+ Apache License
33
+
34
+ Version 2.0, January 2004
35
+
36
+ http://www.apache.org/licenses/
37
+
38
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
39
+
40
+ 1. Definitions.
41
+
42
+ "License" shall mean the terms and conditions for use, reproduction, and
43
+ distribution as defined by Sections 1 through 9 of this document.
44
+
45
+ "Licensor" shall mean the copyright owner or entity authorized by the
46
+ copyright owner that is granting the License.
47
+
48
+ "Legal Entity" shall mean the union of the acting entity and all other
49
+ entities that control, are controlled by, or are under common control with
50
+ that entity. For the purposes of this definition, "control" means (i) the
51
+ power, direct or indirect, to cause the direction or management of such
52
+ entity, whether by contract or otherwise, or (ii) ownership of fifty percent
53
+ (50%) or more of the outstanding shares, or (iii) beneficial ownership of such
54
+ entity.
55
+
56
+ "You" (or "Your") shall mean an individual or Legal Entity exercising
57
+ permissions granted by this License.
58
+
59
+ "Source" form shall mean the preferred form for making modifications,
60
+ including but not limited to software source code, documentation source, and
61
+ configuration files.
62
+
63
+ "Object" form shall mean any form resulting from mechanical transformation or
64
+ translation of a Source form, including but not limited to compiled object
65
+ code, generated documentation, and conversions to other media types.
66
+
67
+ "Work" shall mean the work of authorship, whether in Source or Object form,
68
+ made available under the License, as indicated by a copyright notice that is
69
+ included in or attached to the work (an example is provided in the Appendix
70
+ below).
71
+
72
+ "Derivative Works" shall mean any work, whether in Source or Object form, that
73
+ is based on (or derived from) the Work and for which the editorial revisions,
74
+ annotations, elaborations, or other modifications represent, as a whole, an
75
+ original work of authorship. For the purposes of this License, Derivative
76
+ Works shall not include works that remain separable from, or merely link (or
77
+ bind by name) to the interfaces of, the Work and Derivative Works thereof.
78
+
79
+ "Contribution" shall mean any work of authorship, including the original
80
+ version of the Work and any modifications or additions to that Work or
81
+ Derivative Works thereof, that is intentionally submitted to Licensor for
82
+ inclusion in the Work by the copyright owner or by an individual or Legal
83
+ Entity authorized to submit on behalf of the copyright owner. For the purposes
84
+ of this definition, "submitted" means any form of electronic, verbal, or
85
+ written communication sent to the Licensor or its representatives, including
86
+ but not limited to communication on electronic mailing lists, source code
87
+ control systems, and issue tracking systems that are managed by, or on behalf
88
+ of, the Licensor for the purpose of discussing and improving the Work, but
89
+ excluding communication that is conspicuously marked or otherwise designated
90
+ in writing by the copyright owner as "Not a Contribution."
91
+
92
+ "Contributor" shall mean Licensor and any individual or Legal Entity on behalf
93
+ of whom a Contribution has been received by Licensor and subsequently
94
+ incorporated within the Work.
95
+
96
+ 2. Grant of Copyright License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable copyright license to reproduce, prepare Derivative Works of, publicly display, publicly perform, sublicense, and distribute the Work and such Derivative Works in Source or Object form.
97
+
98
+ 3. Grant of Patent License. Subject to the terms and conditions of this License, each Contributor hereby grants to You a perpetual, worldwide, non-exclusive, no-charge, royalty-free, irrevocable (except as stated in this section) patent license to make, have made, use, offer to sell, sell, import, and otherwise transfer the Work, where such license applies only to those patent claims licensable by such Contributor that are necessarily infringed by their Contribution(s) alone or by combination of their Contribution(s) with the Work to which such Contribution(s) was submitted. If You institute patent litigation against any entity (including a cross-claim or counterclaim in a lawsuit) alleging that the Work or a Contribution incorporated within the Work constitutes direct or contributory patent infringement, then any patent licenses granted to You under this License for that Work shall terminate as of the date such litigation is filed.
99
+
100
+ 4. Redistribution. You may reproduce and distribute copies of the Work or Derivative Works thereof in any medium, with or without modifications, and in Source or Object form, provided that You meet the following conditions:
101
+
102
+ (a) You must give any other recipients of the Work or Derivative Works a copy
103
+ of this License; and
104
+
105
+ (b) You must cause any modified files to carry prominent notices stating that
106
+ You changed the files; and
107
+
108
+ (c) You must retain, in the Source form of any Derivative Works that You
109
+ distribute, all copyright, patent, trademark, and attribution notices from the
110
+ Source form of the Work, excluding those notices that do not pertain to any
111
+ part of the Derivative Works; and
112
+
113
+ (d) If the Work includes a "NOTICE" text file as part of its distribution,
114
+ then any Derivative Works that You distribute must include a readable copy of
115
+ the attribution notices contained within such NOTICE file, excluding those
116
+ notices that do not pertain to any part of the Derivative Works, in at least
117
+ one of the following places: within a NOTICE text file distributed as part of
118
+ the Derivative Works; within the Source form or documentation, if provided
119
+ along with the Derivative Works; or, within a display generated by the
120
+ Derivative Works, if and wherever such third-party notices normally appear.
121
+ The contents of the NOTICE file are for informational purposes only and do not
122
+ modify the License. You may add Your own attribution notices within Derivative
123
+ Works that You distribute, alongside or as an addendum to the NOTICE text from
124
+ the Work, provided that such additional attribution notices cannot be
125
+ construed as modifying the License.
126
+
127
+ You may add Your own copyright statement to Your modifications and may provide
128
+ additional or different license terms and conditions for use, reproduction, or
129
+ distribution of Your modifications, or for any such Derivative Works as a
130
+ whole, provided Your use, reproduction, and distribution of the Work otherwise
131
+ complies with the conditions stated in this License.
132
+
133
+ 5. Submission of Contributions. Unless You explicitly state otherwise, any Contribution intentionally submitted for inclusion in the Work by You to the Licensor shall be under the terms and conditions of this License, without any additional terms or conditions. Notwithstanding the above, nothing herein shall supersede or modify the terms of any separate license agreement you may have executed with Licensor regarding such Contributions.
134
+
135
+ 6. Trademarks. This License does not grant permission to use the trade names, trademarks, service marks, or product names of the Licensor, except as required for reasonable and customary use in describing the origin of the Work and reproducing the content of the NOTICE file.
136
+
137
+ 7. Disclaimer of Warranty. Unless required by applicable law or agreed to in writing, Licensor provides the Work (and each Contributor provides its Contributions) on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied, including, without limitation, any warranties or conditions of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A PARTICULAR PURPOSE. You are solely responsible for determining the appropriateness of using or redistributing the Work and assume any risks associated with Your exercise of permissions under this License.
138
+
139
+ 8. Limitation of Liability. In no event and under no legal theory, whether in tort (including negligence), contract, or otherwise, unless required by applicable law (such as deliberate and grossly negligent acts) or agreed to in writing, shall any Contributor be liable to You for damages, including any direct, indirect, special, incidental, or consequential damages of any character arising as a result of this License or out of the use or inability to use the Work (including but not limited to damages for loss of goodwill, work stoppage, computer failure or malfunction, or any and all other commercial damages or losses), even if such Contributor has been advised of the possibility of such damages.
140
+
141
+ 9. Accepting Warranty or Additional Liability. While redistributing the Work or Derivative Works thereof, You may choose to offer, and charge a fee for, acceptance of support, warranty, indemnity, or other liability obligations and/or rights consistent with this License. However, in accepting such obligations, You may act only on Your own behalf and on Your sole responsibility, not on behalf of any other Contributor, and only if You agree to indemnify, defend, and hold each Contributor harmless for any liability incurred by, or claims asserted against, such Contributor by reason of your accepting any such warranty or additional liability.
142
+
143
+ END OF TERMS AND CONDITIONS
144
+
145
+ -----
146
+
147
+ apps/support/cmdline.h is Copyright (c) 2009, Hideyuki Tanaka and is licensed
148
+ under the BSD 3-Clause license.
149
+
150
+ Redistribution and use in source and binary forms, with or without
151
+ modification, are permitted provided that the following conditions are met:
152
+ * Redistributions of source code must retain the above copyright
153
+ notice, this list of conditions and the following disclaimer.
154
+ * Redistributions in binary form must reproduce the above copyright
155
+ notice, this list of conditions and the following disclaimer in the
156
+ documentation and/or other materials provided with the distribution.
157
+ * Neither the name of the <organization> nor the
158
+ names of its contributors may be used to endorse or promote products
159
+ derived from this software without specific prior written permission.
160
+
161
+ THIS SOFTWARE IS PROVIDED BY <copyright holder> ''AS IS'' AND ANY
162
+ EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
163
+ WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
164
+ DISCLAIMED. IN NO EVENT SHALL <copyright holder> BE LIABLE FOR ANY
165
+ DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
166
+ (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
167
+ LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
168
+ ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
169
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
170
+ SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
171
+
172
+ ----
173
+
174
+ dependencies/spirv is Copyright (c) 2014-2018 The Khronos Group Inc.
175
+
176
+ Permission is hereby granted, free of charge, to any person obtaining a copy
177
+ of this software and/or associated documentation files (the "Materials"),
178
+ to deal in the Materials without restriction, including without limitation
179
+ the rights to use, copy, modify, merge, publish, distribute, sublicense,
180
+ and/or sell copies of the Materials, and to permit persons to whom the
181
+ Materials are furnished to do so, subject to the following conditions:
182
+
183
+ The above copyright notice and this permission notice shall be included in
184
+ all copies or substantial portions of the Materials.
185
+
186
+ MODIFICATIONS TO THIS FILE MAY MEAN IT NO LONGER ACCURATELY REFLECTS KHRONOS
187
+ STANDARDS. THE UNMODIFIED, NORMATIVE VERSIONS OF KHRONOS SPECIFICATIONS AND
188
+ HEADER INFORMATION ARE LOCATED AT https://www.khronos.org/registry/
189
+
190
+ THE MATERIALS ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
191
+ OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
192
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
193
+ THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
194
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
195
+ FROM,OUT OF OR IN CONNECTION WITH THE MATERIALS OR THE USE OR OTHER DEALINGS
196
+ IN THE MATERIALS.
197
+
198
+
199
+ ----
200
+
201
+ dependencies/vulkan is Copyright (c) 2014-2017 The Khronos Group Inc.
202
+
203
+ Licensed under the Apache License, Version 2.0 (the "License");
204
+ you may not use this file except in compliance with the License.
205
+ You may obtain a copy of the License at
206
+
207
+ http://www.apache.org/licenses/LICENSE-2.0
208
+
209
+ Unless required by applicable law or agreed to in writing, software
210
+ distributed under the License is distributed on an "AS IS" BASIS,
211
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
212
+ See the License for the specific language governing permissions and
213
+ limitations under the License.
214
+
215
+ ----
216
+
217
+ apps/linear_algebra/include/cblas.h is licensed under the BLAS license.
218
+
219
+ The reference BLAS is a freely-available software package. It is available from
220
+ netlib via anonymous ftp and the World Wide Web. Thus, it can be included in
221
+ commercial software packages (and has been). We only ask that proper credit be
222
+ given to the authors.
223
+
224
+ Like all software, it is copyrighted. It is not trademarked, but we do ask the
225
+ following:
226
+
227
+ If you modify the source for these routines we ask that you change the name of
228
+ the routine and comment the changes made to the original.
229
+
230
+ We will gladly answer any questions regarding the software. If a modification is
231
+ done, however, it is the responsibility of the person who modified the routine
232
+ to provide support.
233
+