pyfast 4.12.0__cp36-abi3-macosx_10_13_x86_64.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 (279) hide show
  1. fast/README.md +41 -0
  2. fast/__init__.py +22 -0
  3. fast/bin/UFFviewer +0 -0
  4. fast/bin/fast_configuration.txt +14 -0
  5. fast/bin/runPipeline +0 -0
  6. fast/bin/systemCheck +0 -0
  7. fast/doc/bright-plotting-style.ini +66 -0
  8. fast/doc/dark-plotting-style.ini +66 -0
  9. fast/doc/fonts/UFL.txt +96 -0
  10. fast/doc/fonts/Ubuntu-Bold.ttf +0 -0
  11. fast/doc/fonts/Ubuntu-BoldItalic.ttf +0 -0
  12. fast/doc/fonts/Ubuntu-Italic.ttf +0 -0
  13. fast/doc/fonts/Ubuntu-Light.ttf +0 -0
  14. fast/doc/fonts/Ubuntu-LightItalic.ttf +0 -0
  15. fast/doc/fonts/Ubuntu-Medium.ttf +0 -0
  16. fast/doc/fonts/Ubuntu-MediumItalic.ttf +0 -0
  17. fast/doc/fonts/Ubuntu-Regular.ttf +0 -0
  18. fast/doc/fonts/UbuntuMono-Bold.ttf +0 -0
  19. fast/doc/fonts/UbuntuMono-BoldItalic.ttf +0 -0
  20. fast/doc/fonts/UbuntuMono-Italic.ttf +0 -0
  21. fast/doc/fonts/UbuntuMono-Regular.ttf +0 -0
  22. fast/doc/images/FAST_logo_square.png +0 -0
  23. fast/doc/images/fast_icon.ico +0 -0
  24. fast/doc/images/fast_icon.png +0 -0
  25. fast/entry_points.py +14 -0
  26. fast/fast.py +19961 -0
  27. fast/kernels/Algorithms/AirwaySegmentation/AirwaySegmentation.cl +85 -0
  28. fast/kernels/Algorithms/ApplyColormap/ApplyColormap.cl +146 -0
  29. fast/kernels/Algorithms/BinaryThresholding/BinaryThresholding2D.cl +61 -0
  30. fast/kernels/Algorithms/BinaryThresholding/BinaryThresholding3D.cl +61 -0
  31. fast/kernels/Algorithms/BlockMatching/BlockMatching.cl +257 -0
  32. fast/kernels/Algorithms/CenterlineExtraction/CenterlineExtraction.cl +153 -0
  33. fast/kernels/Algorithms/CoherentPointDrift/CoherentPointDrift.cl +0 -0
  34. fast/kernels/Algorithms/Color/ColorToGrayscale.cl +22 -0
  35. fast/kernels/Algorithms/Color/GrayscaleToColor.cl +19 -0
  36. fast/kernels/Algorithms/GaussianSmoothing/GaussianSmoothing2D.cl +35 -0
  37. fast/kernels/Algorithms/GaussianSmoothing/GaussianSmoothing3D.cl +75 -0
  38. fast/kernels/Algorithms/GradientVectorFlow/EulerGradientVectorFlow.cl +174 -0
  39. fast/kernels/Algorithms/GradientVectorFlow/MultigridGradientVectorFlow.cl +407 -0
  40. fast/kernels/Algorithms/HounsefieldConverter/HounsefieldConverter.cl +22 -0
  41. fast/kernels/Algorithms/ImageAdd/ImageAdd.cl +79 -0
  42. fast/kernels/Algorithms/ImageCaster/ImageCaster.cl +38 -0
  43. fast/kernels/Algorithms/ImageChannelConverter/ImageChannelConverter.cl +121 -0
  44. fast/kernels/Algorithms/ImageFlipper/ImageFlipper2D.cl +23 -0
  45. fast/kernels/Algorithms/ImageFlipper/ImageFlipper3D.cl +51 -0
  46. fast/kernels/Algorithms/ImageGradient/ImageGradient.cl +71 -0
  47. fast/kernels/Algorithms/ImageInverter/ImageInverter.cl +30 -0
  48. fast/kernels/Algorithms/ImageMultiply/ImageMultiply.cl +79 -0
  49. fast/kernels/Algorithms/ImagePatch/PatchStitcher2D.cl +22 -0
  50. fast/kernels/Algorithms/ImagePatch/PatchStitcher3D.cl +95 -0
  51. fast/kernels/Algorithms/ImageResampler/ImageResampler2D.cl +40 -0
  52. fast/kernels/Algorithms/ImageResampler/ImageResampler3D.cl +32 -0
  53. fast/kernels/Algorithms/ImageResizer/ImageResizer.cl +134 -0
  54. fast/kernels/Algorithms/ImageSharpening/ImageSharpening.cl +47 -0
  55. fast/kernels/Algorithms/ImageSlicer/ImageSlicer.cl +77 -0
  56. fast/kernels/Algorithms/ImageTransposer/ImageTransposer2D.cl +16 -0
  57. fast/kernels/Algorithms/ImageTransposer/ImageTransposer3D.cl +45 -0
  58. fast/kernels/Algorithms/IntensityClipping/IntensityClipping2D.cl +19 -0
  59. fast/kernels/Algorithms/IntensityClipping/IntensityClipping3D.cl +20 -0
  60. fast/kernels/Algorithms/IntensityNormalization/IntensityNormalization.cl +85 -0
  61. fast/kernels/Algorithms/IntensityNormalization/ZeroMeanUnitVariance.cl +76 -0
  62. fast/kernels/Algorithms/KalmanFilterModelSegmentation/AppearanceModels/RidgeEdge/RidgeEdgeModel.cl +81 -0
  63. fast/kernels/Algorithms/LabelModifier/LabelModifier.cl +20 -0
  64. fast/kernels/Algorithms/LaplacianOfGaussian/LaplacianOfGaussian2D.cl +27 -0
  65. fast/kernels/Algorithms/LevelSet/LevelSetSegmentation.cl +132 -0
  66. fast/kernels/Algorithms/LungSegmentation/LungSegmentation.cl +22 -0
  67. fast/kernels/Algorithms/MeshToSegmentation/MeshToSegmentation.cl +184 -0
  68. fast/kernels/Algorithms/Morphology/Dilation.cl +56 -0
  69. fast/kernels/Algorithms/Morphology/Erosion.cl +64 -0
  70. fast/kernels/Algorithms/NeuralNetwork/NeuralNetwork.cl +122 -0
  71. fast/kernels/Algorithms/NeuralNetwork/VertexTensorToSegmentation.cl +13 -0
  72. fast/kernels/Algorithms/NonLocalMeans/NonLocalMeans2D.cl +94 -0
  73. fast/kernels/Algorithms/SeededRegionGrowing/SeededRegionGrowing2D.cl +57 -0
  74. fast/kernels/Algorithms/SeededRegionGrowing/SeededRegionGrowing3D.cl +58 -0
  75. fast/kernels/Algorithms/Skeletonization/Skeletonization2D.cl +77 -0
  76. fast/kernels/Algorithms/SurfaceExtraction/SurfaceExtraction.cl +519 -0
  77. fast/kernels/Algorithms/SurfaceExtraction/SurfaceExtraction_no_3d_write.cl +739 -0
  78. fast/kernels/Algorithms/TemporalSmoothing/ImageMovingAverage.cl +66 -0
  79. fast/kernels/Algorithms/TemporalSmoothing/ImageWeightedMovingAverage.cl +74 -0
  80. fast/kernels/Algorithms/TissueSegmentation/TissueSegmentation.cl +18 -0
  81. fast/kernels/Algorithms/TubeSegmentationAndCenterlineExtraction/InverseGradientSegmentation.cl +203 -0
  82. fast/kernels/Algorithms/TubeSegmentationAndCenterlineExtraction/TubeSegmentationAndCenterlineExtraction.cl +566 -0
  83. fast/kernels/Algorithms/Ultrasound/EnvelopeAndLogCompressor.cl +45 -0
  84. fast/kernels/Algorithms/Ultrasound/ScanConverter.cl +76 -0
  85. fast/kernels/Algorithms/UltrasoundImageCropper/UltrasoundImageCropper.cl +31 -0
  86. fast/kernels/Algorithms/UltrasoundImageEnhancement/UltrasoundImageEnhancement.cl +27 -0
  87. fast/kernels/Algorithms/VectorMedianFilter/VectorMedianFilter.cl +31 -0
  88. fast/kernels/ImageFill.cl +30 -0
  89. fast/kernels/ImageMinMax.cl +196 -0
  90. fast/kernels/ImageSum.cl +170 -0
  91. fast/kernels/Tests/Algorithms/DoubleFilter.cl +7 -0
  92. fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.frag +8 -0
  93. fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.geom +69 -0
  94. fast/kernels/Visualization/BoundingBoxRenderer/BoundingBoxRenderer.vert +17 -0
  95. fast/kernels/Visualization/HeatmapRenderer/HeatmapRenderer.cl +51 -0
  96. fast/kernels/Visualization/ImagePyramidRenderer/ImagePyramidRenderer.frag +11 -0
  97. fast/kernels/Visualization/ImagePyramidRenderer/ImagePyramidRenderer.vert +15 -0
  98. fast/kernels/Visualization/ImageRenderer/ImageRenderer.vert +15 -0
  99. fast/kernels/Visualization/ImageRenderer/ImageRendererFLOAT.frag +18 -0
  100. fast/kernels/Visualization/ImageRenderer/ImageRendererINT.frag +18 -0
  101. fast/kernels/Visualization/ImageRenderer/ImageRendererUINT.frag +18 -0
  102. fast/kernels/Visualization/LineRenderer/LineRenderer.frag +8 -0
  103. fast/kernels/Visualization/LineRenderer/LineRenderer.geom +35 -0
  104. fast/kernels/Visualization/LineRenderer/LineRenderer.vert +20 -0
  105. fast/kernels/Visualization/LineRenderer/LineRenderer3D.frag +8 -0
  106. fast/kernels/Visualization/LineRenderer/LineRenderer3D.vert +20 -0
  107. fast/kernels/Visualization/LineRenderer/LineRendererJoints.frag +15 -0
  108. fast/kernels/Visualization/LineRenderer/LineRendererJoints.vert +24 -0
  109. fast/kernels/Visualization/SegmentationLabelRenderer/SegmentationLabelRenderer.frag +11 -0
  110. fast/kernels/Visualization/SegmentationLabelRenderer/SegmentationLabelRenderer.vert +16 -0
  111. fast/kernels/Visualization/SegmentationRenderer/SegmentationPyramidRenderer.frag +53 -0
  112. fast/kernels/Visualization/SegmentationRenderer/SegmentationRenderer.frag +52 -0
  113. fast/kernels/Visualization/SegmentationRenderer/SegmentationRenderer.vert +15 -0
  114. fast/kernels/Visualization/TextRenderer/TextRenderer.frag +11 -0
  115. fast/kernels/Visualization/TextRenderer/TextRenderer.vert +20 -0
  116. fast/kernels/Visualization/TriangleRenderer/TriangleRenderer.frag +49 -0
  117. fast/kernels/Visualization/TriangleRenderer/TriangleRenderer.vert +35 -0
  118. fast/kernels/Visualization/VectorFieldRenderer/VectorFieldColorRenderer.cl +30 -0
  119. fast/kernels/Visualization/VertexRenderer/VertexRenderer.frag +14 -0
  120. fast/kernels/Visualization/VertexRenderer/VertexRenderer.vert +23 -0
  121. fast/kernels/Visualization/View.cl +10 -0
  122. fast/kernels/Visualization/VolumeRenderer/AlphaBlendingVolumeRenderer.cl +211 -0
  123. fast/kernels/Visualization/VolumeRenderer/MaximumIntensityProjection.cl +139 -0
  124. fast/kernels/Visualization/VolumeRenderer/ThresholdVolumeRenderer.cl +178 -0
  125. fast/lib/_fast.abi3.so +0 -0
  126. fast/lib/libFAST.4.dylib +0 -0
  127. fast/lib/libInferenceEngineONNXRuntime.dylib +0 -0
  128. fast/lib/libInferenceEngineOpenVINO.dylib +0 -0
  129. fast/lib/libInferenceEngineTensorFlow.dylib +0 -0
  130. fast/lib/libJKQTCommonSharedLib_Release.4.0.0.dylib +0 -0
  131. fast/lib/libJKQTFastPlotterSharedLib_Release.4.0.0.dylib +0 -0
  132. fast/lib/libJKQTMathTextSharedLib_Release.4.0.0.dylib +0 -0
  133. fast/lib/libJKQTPlotterSharedLib_Release.4.0.0.dylib +0 -0
  134. fast/lib/libOpenIGTLink.3.dylib +0 -0
  135. fast/lib/libQt5Core.5.dylib +0 -0
  136. fast/lib/libQt5DBus.5.dylib +0 -0
  137. fast/lib/libQt5Gui.5.dylib +0 -0
  138. fast/lib/libQt5Multimedia.5.dylib +0 -0
  139. fast/lib/libQt5MultimediaWidgets.5.dylib +0 -0
  140. fast/lib/libQt5Network.5.dylib +0 -0
  141. fast/lib/libQt5OpenGL.5.dylib +0 -0
  142. fast/lib/libQt5PrintSupport.5.dylib +0 -0
  143. fast/lib/libQt5SerialPort.5.dylib +0 -0
  144. fast/lib/libQt5Svg.5.dylib +0 -0
  145. fast/lib/libQt5Widgets.5.dylib +0 -0
  146. fast/lib/libQt5Xml.5.dylib +0 -0
  147. fast/lib/libbrotlicommon.1.dylib +0 -0
  148. fast/lib/libbrotlidec.1.dylib +0 -0
  149. fast/lib/libbrotlienc.1.dylib +0 -0
  150. fast/lib/libdcmdata.17.dylib +0 -0
  151. fast/lib/libdcmimage.17.dylib +0 -0
  152. fast/lib/libdcmimgle.17.dylib +0 -0
  153. fast/lib/libdcmjpeg.17.dylib +0 -0
  154. fast/lib/libijg12.17.dylib +0 -0
  155. fast/lib/libijg12.dylib +0 -0
  156. fast/lib/libijg16.17.dylib +0 -0
  157. fast/lib/libijg16.dylib +0 -0
  158. fast/lib/libijg8.17.dylib +0 -0
  159. fast/lib/libijg8.dylib +0 -0
  160. fast/lib/libjxl.0.11.dylib +0 -0
  161. fast/lib/libjxl_cms.0.11.dylib +0 -0
  162. fast/lib/libjxl_threads.0.11.dylib +0 -0
  163. fast/lib/liboflog.17.dylib +0 -0
  164. fast/lib/libofstd.17.dylib +0 -0
  165. fast/lib/libonnxruntime.1.14.0.dylib +0 -0
  166. fast/lib/libonnxruntime.dylib +0 -0
  167. fast/lib/libopenslide.1.dylib +0 -0
  168. fast/lib/libopenvino.2230.dylib +0 -0
  169. fast/lib/libopenvino_auto_batch_plugin.so +0 -0
  170. fast/lib/libopenvino_auto_plugin.so +0 -0
  171. fast/lib/libopenvino_gapi_preproc.so +0 -0
  172. fast/lib/libopenvino_hetero_plugin.so +0 -0
  173. fast/lib/libopenvino_intel_cpu_plugin.so +0 -0
  174. fast/lib/libopenvino_ir_frontend.2230.dylib +0 -0
  175. fast/lib/libopenvino_onnx_frontend.2230.dylib +0 -0
  176. fast/lib/libopenvino_paddle_frontend.2230.dylib +0 -0
  177. fast/lib/libopenvino_tensorflow_frontend.2230.dylib +0 -0
  178. fast/lib/libtbb.dylib +0 -0
  179. fast/lib/libz.1.dylib +0 -0
  180. fast/lib/plugins.xml +16 -0
  181. fast/licenses/OpenIGTLink/LICENSE.txt +30 -0
  182. fast/licenses/OpenJPEG/LICENSE +39 -0
  183. fast/licenses/OpenSlide/COPYING.LESSER +504 -0
  184. fast/licenses/PCRE2/LICENCE.md +103 -0
  185. fast/licenses/cairo/COPYING +33 -0
  186. fast/licenses/cairo/COPYING-LGPL-2.1 +510 -0
  187. fast/licenses/cairo/COPYING-MPL-1.1 +470 -0
  188. fast/licenses/clarius/LICENSE +29 -0
  189. fast/licenses/dcmtk/COPYRIGHT +1034 -0
  190. fast/licenses/eigen/COPYING.APACHE +203 -0
  191. fast/licenses/eigen/COPYING.BSD +26 -0
  192. fast/licenses/eigen/COPYING.GPL +674 -0
  193. fast/licenses/eigen/COPYING.LGPL +502 -0
  194. fast/licenses/eigen/COPYING.MINPACK +51 -0
  195. fast/licenses/eigen/COPYING.MPL2 +373 -0
  196. fast/licenses/eigen/COPYING.README +18 -0
  197. fast/licenses/fast/LICENSE +25 -0
  198. fast/licenses/gdk-pixbuf/COPYING +502 -0
  199. fast/licenses/glib/COPYING +175 -0
  200. fast/licenses/hdf5/COPYING +106 -0
  201. fast/licenses/jkqtplotter/LICENSE +505 -0
  202. fast/licenses/jpegxl/LICENSE.brotli +19 -0
  203. fast/licenses/jpegxl/LICENSE.highway +201 -0
  204. fast/licenses/jpegxl/LICENSE.jpeg-xl +27 -0
  205. fast/licenses/jpegxl/LICENSE.skcms +29 -0
  206. fast/licenses/jpegxl/PATENTS +22 -0
  207. fast/licenses/libdicom/LICENSE +21 -0
  208. fast/licenses/libjpeg-turbo/LICENSE.md +135 -0
  209. fast/licenses/libjpeg-turbo/README.ijg +260 -0
  210. fast/licenses/libpng/LICENSE +134 -0
  211. fast/licenses/libtiff/LICENSE.md +23 -0
  212. fast/licenses/onnxruntime/LICENSE +21 -0
  213. fast/licenses/onnxruntime/Privacy.md +21 -0
  214. fast/licenses/onnxruntime/ThirdPartyNotices.txt +5786 -0
  215. fast/licenses/opencl/LICENSE +201 -0
  216. fast/licenses/openvino/Apache_license.txt +201 -0
  217. fast/licenses/openvino/EULA.htm +43 -0
  218. fast/licenses/openvino/EULA.rtf +61 -0
  219. fast/licenses/openvino/EULA.txt +163 -0
  220. fast/licenses/openvino/GNA SOFTWARE LICENSE AGREEMENT.txt +1 -0
  221. fast/licenses/openvino/Intel_Software_Development_Products.rtf +1217 -0
  222. fast/licenses/openvino/Intel_Software_Development_Products.txt +707 -0
  223. fast/licenses/openvino/LICENSE +201 -0
  224. fast/licenses/openvino/OpenVINOsupport.txt +12 -0
  225. fast/licenses/openvino/onednn_third-party-programs.txt +557 -0
  226. fast/licenses/openvino/readme.txt +60 -0
  227. fast/licenses/openvino/redist.txt +42 -0
  228. fast/licenses/openvino/runtime-third-party-programs.txt +1400 -0
  229. fast/licenses/openvino/tbb_third-party-programs.txt +230 -0
  230. fast/licenses/pixman/COPYING +42 -0
  231. fast/licenses/proxy-libintl/COPYING +482 -0
  232. fast/licenses/qt5/LICENSE.FDL +450 -0
  233. fast/licenses/qt5/LICENSE.GPL3-EXCEPT +704 -0
  234. fast/licenses/qt5/LICENSE.GPLv2 +292 -0
  235. fast/licenses/qt5/LICENSE.GPLv3 +686 -0
  236. fast/licenses/qt5/LICENSE.LGPLv21 +514 -0
  237. fast/licenses/qt5/LICENSE.LGPLv3 +175 -0
  238. fast/licenses/qt5/LICENSE.QT-LICENSE-AGREEMENT +1331 -0
  239. fast/licenses/semaphore/Semaphore_LICENSE.txt +17 -0
  240. fast/licenses/tensorflow/LICENSE +203 -0
  241. fast/licenses/tensorflow/THIRD_PARTY_TF_C_LICENSES +8963 -0
  242. fast/licenses/uthash/LICENSE +21 -0
  243. fast/licenses/zip/UNLICENSE +26 -0
  244. fast/licenses/zlib/README +115 -0
  245. fast/licenses/zlib-ng/LICENSE.md +19 -0
  246. fast/pipelines/uff_viewer/colormap_and_reject.fpl +26 -0
  247. fast/pipelines/uff_viewer/default.fpl +9 -0
  248. fast/pipelines/uff_viewer/non_local_means.fpl +34 -0
  249. fast/plugins/audio/libqtaudio_coreaudio.dylib +0 -0
  250. fast/plugins/bearer/libqgenericbearer.dylib +0 -0
  251. fast/plugins/generic/libqtuiotouchplugin.dylib +0 -0
  252. fast/plugins/iconengines/libqsvgicon.dylib +0 -0
  253. fast/plugins/imageformats/libqgif.dylib +0 -0
  254. fast/plugins/imageformats/libqicns.dylib +0 -0
  255. fast/plugins/imageformats/libqico.dylib +0 -0
  256. fast/plugins/imageformats/libqjpeg.dylib +0 -0
  257. fast/plugins/imageformats/libqmacheif.dylib +0 -0
  258. fast/plugins/imageformats/libqmacjp2.dylib +0 -0
  259. fast/plugins/imageformats/libqsvg.dylib +0 -0
  260. fast/plugins/imageformats/libqtga.dylib +0 -0
  261. fast/plugins/imageformats/libqtiff.dylib +0 -0
  262. fast/plugins/imageformats/libqwbmp.dylib +0 -0
  263. fast/plugins/imageformats/libqwebp.dylib +0 -0
  264. fast/plugins/mediaservice/libqavfcamera.dylib +0 -0
  265. fast/plugins/mediaservice/libqavfmediaplayer.dylib +0 -0
  266. fast/plugins/mediaservice/libqtmedia_audioengine.dylib +0 -0
  267. fast/plugins/platforms/libqcocoa.dylib +0 -0
  268. fast/plugins/platforms/libqminimal.dylib +0 -0
  269. fast/plugins/platforms/libqoffscreen.dylib +0 -0
  270. fast/plugins/platformthemes/libqxdgdesktopportal.dylib +0 -0
  271. fast/plugins/playlistformats/libqtmultimedia_m3u.dylib +0 -0
  272. fast/plugins/printsupport/libcocoaprintersupport.dylib +0 -0
  273. fast/plugins/sqldrivers/libqsqlite.dylib +0 -0
  274. fast/plugins/styles/libqmacstyle.dylib +0 -0
  275. pyfast-4.12.0.dist-info/METADATA +81 -0
  276. pyfast-4.12.0.dist-info/RECORD +279 -0
  277. pyfast-4.12.0.dist-info/WHEEL +5 -0
  278. pyfast-4.12.0.dist-info/entry_points.txt +5 -0
  279. pyfast-4.12.0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,557 @@
1
+ oneAPI Deep Neural Network Library (oneDNN) Third Party Programs File
2
+
3
+ This file contains the list of third party software ("third party programs")
4
+ contained in the Intel software and their required notices and/or license
5
+ terms. This third party software, even if included with the distribution of
6
+ the Intel software, may be governed by separate license terms, including
7
+ without limitation, third party license terms, other Intel software license
8
+ terms, and open source software license terms. These separate license terms
9
+ govern your use of the third party programs as set forth in the
10
+ "THIRD-PARTY-PROGRAMS" file.
11
+
12
+ Third party programs and their corresponding required notices and/or license
13
+ terms are listed below.
14
+
15
+ --------------------------------------------------------------------------------
16
+ 1. XByak (src/cpu/xbyak/)
17
+ Copyright (c) 2007 MITSUNARI Shigeo
18
+ All rights reserved.
19
+
20
+ 3-Clause BSD License
21
+
22
+ Redistribution and use in source and binary forms, with or without
23
+ modification, are permitted provided that the following conditions are met:
24
+
25
+ Redistributions of source code must retain the above copyright notice, this
26
+ list of conditions and the following disclaimer.
27
+ Redistributions in binary form must reproduce the above copyright notice,
28
+ this list of conditions and the following disclaimer in the documentation
29
+ and/or other materials provided with the distribution.
30
+ Neither the name of the copyright owner nor the names of its contributors may
31
+ be used to endorse or promote products derived from this software without
32
+ specific prior written permission.
33
+
34
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
35
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
36
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
37
+ ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
38
+ LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
39
+ CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
40
+ SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
41
+ INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
42
+ CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
43
+ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
44
+ THE POSSIBILITY OF SUCH DAMAGE.
45
+
46
+
47
+ ソースコード形式かバイナリ形式か、変更するかしないかを問わず、以下の条件を満た
48
+ す場合に限り、再頒布および使用が許可されます。
49
+
50
+ ソースコードを再頒布する場合、上記の著作権表示、本条件一覧、および下記免責条項
51
+ を含めること。
52
+ バイナリ形式で再頒布する場合、頒布物に付属のドキュメント等の資料に、上記の著作
53
+ 権表示、本条件一覧、および下記免責条項を含めること。
54
+ 書面による特別の許可なしに、本ソフトウェアから派生した製品の宣伝または販売促進
55
+ に、著作権者の名前またはコントリビューターの名前を使用してはならない。
56
+ 本ソフトウェアは、著作権者およびコントリビューターによって「現状のまま」提供さ
57
+ れており、明示黙示を問わず、商業的な使用可能性、および特定の目的に対する適合性
58
+ に関する暗黙の保証も含め、またそれに限定されない、いかなる保証もありません。
59
+ 著作権者もコントリビューターも、事由のいかんを問わず、 損害発生の原因いかんを
60
+ 問わず、かつ責任の根拠が契約であるか厳格責任であるか(過失その他の)不法行為で
61
+ あるかを問わず、仮にそのような損害が発生する可能性を知らされていたとしても、
62
+ 本ソフトウェアの使用によって発生した(代替品または代用サービスの調達、使用の
63
+ 喪失、データの喪失、利益の喪失、業務の中断も含め、またそれに限定されない)直接
64
+ 損害、間接損害、偶発的な損害、特別損害、懲罰的損害、または結果損害について、
65
+ 一切責任を負わないものとします。
66
+
67
+ --------------------------------------------------------------------------------
68
+ 2. Googletest (tests/gtests/gtest/)
69
+ Copyright 2005, Google Inc.
70
+ Copyright 2006, Google Inc.
71
+ Copyright 2007, Google Inc.
72
+ Copyright 2008, Google Inc.
73
+ Copyright 2015, Google Inc.
74
+ All rights reserved.
75
+
76
+ 3-Clause BSD License
77
+
78
+ Redistribution and use in source and binary forms, with or without
79
+ modification, are permitted provided that the following conditions are
80
+ met:
81
+
82
+ * Redistributions of source code must retain the above copyright
83
+ notice, this list of conditions and the following disclaimer.
84
+ * Redistributions in binary form must reproduce the above
85
+ copyright notice, this list of conditions and the following disclaimer
86
+ in the documentation and/or other materials provided with the
87
+ distribution.
88
+ * Neither the name of Google Inc. nor the names of its
89
+ contributors may be used to endorse or promote products derived from
90
+ this software without specific prior written permission.
91
+
92
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
93
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
94
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
95
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
96
+ OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
97
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
98
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
99
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
100
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
101
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
102
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
103
+
104
+ --------------------------------------------------------------------------------
105
+ 3. Instrumentation and Tracing Technology API (src/common/ittnotify/)
106
+ Copyright (c) 2011, Intel Corporation. All rights reserved.
107
+ Copyright (c) 2005-2014 Intel Corporation. All rights reserved.
108
+
109
+ 3-Clause BSD License
110
+
111
+ Redistribution and use in source and binary forms, with or without
112
+ modification, are permitted provided that the following conditions are met:
113
+
114
+ 1. Redistributions of source code must retain the above copyright notice, this
115
+ list of conditions and the following disclaimer.
116
+
117
+ 2. Redistributions in binary form must reproduce the above copyright notice,
118
+ this list of conditions and the following disclaimer in the documentation
119
+ and/or other materials provided with the distribution.
120
+
121
+ 3. Neither the name of Intel Corporation nor the names of its
122
+ contributors may be used to endorse or promote products derived from
123
+ this software without specific prior written permission.
124
+
125
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
126
+ AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
127
+ IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
128
+ DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
129
+ FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
130
+ DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
131
+ SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
132
+ CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
133
+ OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
134
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
135
+
136
+ --------------------------------------------------------------------------------
137
+ 4. CMake (cmake/FindOpenCL.cmake, cmake/FindBLAS.cmake, cmake/FindACL.cmake)
138
+ CMake - Cross Platform Makefile Generator
139
+ Copyright 2000-2020 Kitware, Inc. and Contributors
140
+ All rights reserved.
141
+
142
+ 3-Clause BSD License
143
+
144
+ Redistribution and use in source and binary forms, with or without
145
+ modification, are permitted provided that the following conditions
146
+ are met:
147
+
148
+ * Redistributions of source code must retain the above copyright
149
+ notice, this list of conditions and the following disclaimer.
150
+
151
+ * Redistributions in binary form must reproduce the above copyright
152
+ notice, this list of conditions and the following disclaimer in the
153
+ documentation and/or other materials provided with the distribution.
154
+
155
+ * Neither the name of Kitware, Inc. nor the names of Contributors
156
+ may be used to endorse or promote products derived from this
157
+ software without specific prior written permission.
158
+
159
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
160
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
161
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
162
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
163
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
164
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
165
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
166
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
167
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
168
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
169
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
170
+
171
+ ------------------------------------------------------------------------------
172
+
173
+ The following individuals and institutions are among the Contributors:
174
+
175
+ * Aaron C. Meadows <cmake@shadowguarddev.com>
176
+ * Adriaan de Groot <groot@kde.org>
177
+ * Aleksey Avdeev <solo@altlinux.ru>
178
+ * Alexander Neundorf <neundorf@kde.org>
179
+ * Alexander Smorkalov <alexander.smorkalov@itseez.com>
180
+ * Alexey Sokolov <sokolov@google.com>
181
+ * Alex Merry <alex.merry@kde.org>
182
+ * Alex Turbov <i.zaufi@gmail.com>
183
+ * Andreas Pakulat <apaku@gmx.de>
184
+ * Andreas Schneider <asn@cryptomilk.org>
185
+ * André Rigland Brodtkorb <Andre.Brodtkorb@ifi.uio.no>
186
+ * Axel Huebl, Helmholtz-Zentrum Dresden - Rossendorf
187
+ * Benjamin Eikel
188
+ * Bjoern Ricks <bjoern.ricks@gmail.com>
189
+ * Brad Hards <bradh@kde.org>
190
+ * Christopher Harvey
191
+ * Christoph Grüninger <foss@grueninger.de>
192
+ * Clement Creusot <creusot@cs.york.ac.uk>
193
+ * Daniel Blezek <blezek@gmail.com>
194
+ * Daniel Pfeifer <daniel@pfeifer-mail.de>
195
+ * Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
196
+ * Eran Ifrah <eran.ifrah@gmail.com>
197
+ * Esben Mose Hansen, Ange Optimization ApS
198
+ * Geoffrey Viola <geoffrey.viola@asirobots.com>
199
+ * Google Inc
200
+ * Gregor Jasny
201
+ * Helio Chissini de Castro <helio@kde.org>
202
+ * Ilya Lavrenov <ilya.lavrenov@itseez.com>
203
+ * Insight Software Consortium <insightsoftwareconsortium.org>
204
+ * Jan Woetzel
205
+ * Julien Schueller
206
+ * Kelly Thompson <kgt@lanl.gov>
207
+ * Konstantin Podsvirov <konstantin@podsvirov.pro>
208
+ * Laurent Montel <montel@kde.org>
209
+ * Mario Bensi <mbensi@ipsquad.net>
210
+ * Martin Gräßlin <mgraesslin@kde.org>
211
+ * Mathieu Malaterre <mathieu.malaterre@gmail.com>
212
+ * Matthaeus G. Chajdas
213
+ * Matthias Kretz <kretz@kde.org>
214
+ * Matthias Maennich <matthias@maennich.net>
215
+ * Michael Hirsch, Ph.D. <www.scivision.co>
216
+ * Michael Stürmer
217
+ * Miguel A. Figueroa-Villanueva
218
+ * Mike Jackson
219
+ * Mike McQuaid <mike@mikemcquaid.com>
220
+ * Nicolas Bock <nicolasbock@gmail.com>
221
+ * Nicolas Despres <nicolas.despres@gmail.com>
222
+ * Nikita Krupen'ko <krnekit@gmail.com>
223
+ * NVIDIA Corporation <www.nvidia.com>
224
+ * OpenGamma Ltd. <opengamma.com>
225
+ * Patrick Stotko <stotko@cs.uni-bonn.de>
226
+ * Per Øyvind Karlsen <peroyvind@mandriva.org>
227
+ * Peter Collingbourne <peter@pcc.me.uk>
228
+ * Petr Gotthard <gotthard@honeywell.com>
229
+ * Philip Lowman <philip@yhbt.com>
230
+ * Philippe Proulx <pproulx@efficios.com>
231
+ * Raffi Enficiaud, Max Planck Society
232
+ * Raumfeld <raumfeld.com>
233
+ * Roger Leigh <rleigh@codelibre.net>
234
+ * Rolf Eike Beer <eike@sf-mail.de>
235
+ * Roman Donchenko <roman.donchenko@itseez.com>
236
+ * Roman Kharitonov <roman.kharitonov@itseez.com>
237
+ * Ruslan Baratov
238
+ * Sebastian Holtermann <sebholt@xwmw.org>
239
+ * Stephen Kelly <steveire@gmail.com>
240
+ * Sylvain Joubert <joubert.sy@gmail.com>
241
+ * The Qt Company Ltd.
242
+ * Thomas Sondergaard <ts@medical-insight.com>
243
+ * Tobias Hunger <tobias.hunger@qt.io>
244
+ * Todd Gamblin <tgamblin@llnl.gov>
245
+ * Tristan Carel
246
+ * University of Dundee
247
+ * Vadim Zhukov
248
+ * Will Dicharry <wdicharry@stellarscience.com>
249
+
250
+ See version control history for details of individual contributions.
251
+
252
+ The above copyright and license notice applies to distributions of
253
+ CMake in source and binary form. Third-party software packages supplied
254
+ with CMake under compatible licenses provide their own copyright notices
255
+ documented in corresponding subdirectories or source files.
256
+
257
+ ------------------------------------------------------------------------------
258
+
259
+ CMake was initially developed by Kitware with the following sponsorship:
260
+
261
+ * National Library of Medicine at the National Institutes of Health
262
+ as part of the Insight Segmentation and Registration Toolkit (ITK).
263
+
264
+ * US National Labs (Los Alamos, Livermore, Sandia) ASC Parallel
265
+ Visualization Initiative.
266
+
267
+ * National Alliance for Medical Image Computing (NAMIC) is funded by the
268
+ National Institutes of Health through the NIH Roadmap for Medical Research,
269
+ Grant U54 EB005149.
270
+
271
+ * Kitware, Inc.
272
+
273
+ --------------------------------------------------------------------------------
274
+ 5. Xbyak_aarch64 (src/cpu/aarch64/xbyak_aarch64/)
275
+ Copyright 2019-2020 FUJITSU LIMITED
276
+
277
+ Apache License, Version 2.0
278
+
279
+ Licensed under the Apache License, Version 2.0 (the "License");
280
+ you may not use this file except in compliance with the License.
281
+ You may obtain a copy of the License at
282
+
283
+ http://www.apache.org/licenses/LICENSE-2.0
284
+
285
+ Unless required by applicable law or agreed to in writing, software
286
+ distributed under the License is distributed on an "AS IS" BASIS,
287
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
288
+ See the License for the specific language governing permissions and
289
+ limitations under the License.
290
+
291
+
292
+ Apache License
293
+ Version 2.0, January 2004
294
+ http://www.apache.org/licenses/
295
+
296
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
297
+
298
+ 1. Definitions.
299
+
300
+ "License" shall mean the terms and conditions for use, reproduction,
301
+ and distribution as defined by Sections 1 through 9 of this document.
302
+
303
+ "Licensor" shall mean the copyright owner or entity authorized by
304
+ the copyright owner that is granting the License.
305
+
306
+ "Legal Entity" shall mean the union of the acting entity and all
307
+ other entities that control, are controlled by, or are under common
308
+ control with that entity. For the purposes of this definition,
309
+ "control" means (i) the power, direct or indirect, to cause the
310
+ direction or management of such entity, whether by contract or
311
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
312
+ outstanding shares, or (iii) beneficial ownership of such entity.
313
+
314
+ "You" (or "Your") shall mean an individual or Legal Entity
315
+ exercising permissions granted by this License.
316
+
317
+ "Source" form shall mean the preferred form for making modifications,
318
+ including but not limited to software source code, documentation
319
+ source, and configuration files.
320
+
321
+ "Object" form shall mean any form resulting from mechanical
322
+ transformation or translation of a Source form, including but
323
+ not limited to compiled object code, generated documentation,
324
+ and conversions to other media types.
325
+
326
+ "Work" shall mean the work of authorship, whether in Source or
327
+ Object form, made available under the License, as indicated by a
328
+ copyright notice that is included in or attached to the work
329
+ (an example is provided in the Appendix below).
330
+
331
+ "Derivative Works" shall mean any work, whether in Source or Object
332
+ form, that is based on (or derived from) the Work and for which the
333
+ editorial revisions, annotations, elaborations, or other modifications
334
+ represent, as a whole, an original work of authorship. For the purposes
335
+ of this License, Derivative Works shall not include works that remain
336
+ separable from, or merely link (or bind by name) to the interfaces of,
337
+ the Work and Derivative Works thereof.
338
+
339
+ "Contribution" shall mean any work of authorship, including
340
+ the original version of the Work and any modifications or additions
341
+ to that Work or Derivative Works thereof, that is intentionally
342
+ submitted to Licensor for inclusion in the Work by the copyright owner
343
+ or by an individual or Legal Entity authorized to submit on behalf of
344
+ the copyright owner. For the purposes of this definition, "submitted"
345
+ means any form of electronic, verbal, or written communication sent
346
+ to the Licensor or its representatives, including but not limited to
347
+ communication on electronic mailing lists, source code control systems,
348
+ and issue tracking systems that are managed by, or on behalf of, the
349
+ Licensor for the purpose of discussing and improving the Work, but
350
+ excluding communication that is conspicuously marked or otherwise
351
+ designated in writing by the copyright owner as "Not a Contribution."
352
+
353
+ "Contributor" shall mean Licensor and any individual or Legal Entity
354
+ on behalf of whom a Contribution has been received by Licensor and
355
+ subsequently incorporated within the Work.
356
+
357
+ 2. Grant of Copyright License. Subject to the terms and conditions of
358
+ this License, each Contributor hereby grants to You a perpetual,
359
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
360
+ copyright license to reproduce, prepare Derivative Works of,
361
+ publicly display, publicly perform, sublicense, and distribute the
362
+ Work and such Derivative Works in Source or Object form.
363
+
364
+ 3. Grant of Patent License. Subject to the terms and conditions of
365
+ this License, each Contributor hereby grants to You a perpetual,
366
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
367
+ (except as stated in this section) patent license to make, have made,
368
+ use, offer to sell, sell, import, and otherwise transfer the Work,
369
+ where such license applies only to those patent claims licensable
370
+ by such Contributor that are necessarily infringed by their
371
+ Contribution(s) alone or by combination of their Contribution(s)
372
+ with the Work to which such Contribution(s) was submitted. If You
373
+ institute patent litigation against any entity (including a
374
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
375
+ or a Contribution incorporated within the Work constitutes direct
376
+ or contributory patent infringement, then any patent licenses
377
+ granted to You under this License for that Work shall terminate
378
+ as of the date such litigation is filed.
379
+
380
+ 4. Redistribution. You may reproduce and distribute copies of the
381
+ Work or Derivative Works thereof in any medium, with or without
382
+ modifications, and in Source or Object form, provided that You
383
+ meet the following conditions:
384
+
385
+ (a) You must give any other recipients of the Work or
386
+ Derivative Works a copy of this License; and
387
+
388
+ (b) You must cause any modified files to carry prominent notices
389
+ stating that You changed the files; and
390
+
391
+ (c) You must retain, in the Source form of any Derivative Works
392
+ that You distribute, all copyright, patent, trademark, and
393
+ attribution notices from the Source form of the Work,
394
+ excluding those notices that do not pertain to any part of
395
+ the Derivative Works; and
396
+
397
+ (d) If the Work includes a "NOTICE" text file as part of its
398
+ distribution, then any Derivative Works that You distribute must
399
+ include a readable copy of the attribution notices contained
400
+ within such NOTICE file, excluding those notices that do not
401
+ pertain to any part of the Derivative Works, in at least one
402
+ of the following places: within a NOTICE text file distributed
403
+ as part of the Derivative Works; within the Source form or
404
+ documentation, if provided along with the Derivative Works; or,
405
+ within a display generated by the Derivative Works, if and
406
+ wherever such third-party notices normally appear. The contents
407
+ of the NOTICE file are for informational purposes only and
408
+ do not modify the License. You may add Your own attribution
409
+ notices within Derivative Works that You distribute, alongside
410
+ or as an addendum to the NOTICE text from the Work, provided
411
+ that such additional attribution notices cannot be construed
412
+ as modifying the License.
413
+
414
+ You may add Your own copyright statement to Your modifications and
415
+ may provide additional or different license terms and conditions
416
+ for use, reproduction, or distribution of Your modifications, or
417
+ for any such Derivative Works as a whole, provided Your use,
418
+ reproduction, and distribution of the Work otherwise complies with
419
+ the conditions stated in this License.
420
+
421
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
422
+ any Contribution intentionally submitted for inclusion in the Work
423
+ by You to the Licensor shall be under the terms and conditions of
424
+ this License, without any additional terms or conditions.
425
+ Notwithstanding the above, nothing herein shall supersede or modify
426
+ the terms of any separate license agreement you may have executed
427
+ with Licensor regarding such Contributions.
428
+
429
+ 6. Trademarks. This License does not grant permission to use the trade
430
+ names, trademarks, service marks, or product names of the Licensor,
431
+ except as required for reasonable and customary use in describing the
432
+ origin of the Work and reproducing the content of the NOTICE file.
433
+
434
+ 7. Disclaimer of Warranty. Unless required by applicable law or
435
+ agreed to in writing, Licensor provides the Work (and each
436
+ Contributor provides its Contributions) on an "AS IS" BASIS,
437
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
438
+ implied, including, without limitation, any warranties or conditions
439
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
440
+ PARTICULAR PURPOSE. You are solely responsible for determining the
441
+ appropriateness of using or redistributing the Work and assume any
442
+ risks associated with Your exercise of permissions under this License.
443
+
444
+ 8. Limitation of Liability. In no event and under no legal theory,
445
+ whether in tort (including negligence), contract, or otherwise,
446
+ unless required by applicable law (such as deliberate and grossly
447
+ negligent acts) or agreed to in writing, shall any Contributor be
448
+ liable to You for damages, including any direct, indirect, special,
449
+ incidental, or consequential damages of any character arising as a
450
+ result of this License or out of the use or inability to use the
451
+ Work (including but not limited to damages for loss of goodwill,
452
+ work stoppage, computer failure or malfunction, or any and all
453
+ other commercial damages or losses), even if such Contributor
454
+ has been advised of the possibility of such damages.
455
+
456
+ 9. Accepting Warranty or Additional Liability. While redistributing
457
+ the Work or Derivative Works thereof, You may choose to offer,
458
+ and charge a fee for, acceptance of support, warranty, indemnity,
459
+ or other liability obligations and/or rights consistent with this
460
+ License. However, in accepting such obligations, You may act only
461
+ on Your own behalf and on Your sole responsibility, not on behalf
462
+ of any other Contributor, and only if You agree to indemnify,
463
+ defend, and hold each Contributor harmless for any liability
464
+ incurred by, or claims asserted against, such Contributor by reason
465
+ of your accepting any such warranty or additional liability.
466
+
467
+ END OF TERMS AND CONDITIONS
468
+
469
+ --------------------------------------------------------------------------------
470
+ 6. Boost C++ Libraries (src/common/primitive_hashing.hpp)
471
+ Copyright 2005-2014 Daniel James.
472
+
473
+ Boost Software License - Version 1.0 - August 17th, 2003
474
+
475
+ Permission is hereby granted, free of charge, to any person or organization
476
+ obtaining a copy of the software and accompanying documentation covered by
477
+ this license (the "Software") to use, reproduce, display, distribute,
478
+ execute, and transmit the Software, and to prepare derivative works of the
479
+ Software, and to permit third-parties to whom the Software is furnished to
480
+ do so, all subject to the following:
481
+
482
+ The copyright notices in the Software and this entire statement, including
483
+ the above license grant, this restriction and the following disclaimer,
484
+ must be included in all copies of the Software, in whole or in part, and
485
+ all derivative works of the Software, unless such copies or derivative
486
+ works are solely in the form of machine-executable object code generated by
487
+ a source language processor.
488
+
489
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
490
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
491
+ FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT
492
+ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
493
+ FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
494
+ ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
495
+ DEALINGS IN THE SOFTWARE.
496
+
497
+ --------------------------------------------------------------------------------
498
+ 7. Intel(R) Graphics Compute Runtime for oneAPI Level Zero and OpenCL(TM)
499
+ Driver (src/gpu/jit/ngen/npack/{elf_structs,hash}.hpp)
500
+ Copyright (c) 2018 Intel Corporation
501
+
502
+ Intel(R) Graphics Compiler (src/gpu/jit/ngen/npack/neo_structs.hpp)
503
+ Copyright (c) 2019 Intel Corporation
504
+
505
+ Doxyrest toolkit (doc/doxyrest/*)
506
+ Copyright (c) 2016, Tibbo Technology Inc
507
+ Copyright (c) 2016, Vladimir Gladkov
508
+ Copyright (c) 2016, Doxyrest maintainers
509
+
510
+ MIT License
511
+
512
+ Permission is hereby granted, free of charge, to any person obtaining a copy
513
+ of this software and associated documentation files (the "Software"), to deal
514
+ in the Software without restriction, including without limitation the rights
515
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
516
+ copies of the Software, and to permit persons to whom the Software is
517
+ furnished to do so, subject to the following conditions:
518
+
519
+ The above copyright notice and this permission notice shall be included in all
520
+ copies or substantial portions of the Software.
521
+
522
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
523
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
524
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
525
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
526
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
527
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
528
+ SOFTWARE.
529
+
530
+ 8. Sphinx (doc/sphinx/conf/py)
531
+ Copyright (c) 2007-2021 by the Sphinx team (see AUTHORS file).
532
+ All rights reserved.
533
+
534
+ 2-Clause BSD License
535
+
536
+ Redistribution and use in source and binary forms, with or without
537
+ modification, are permitted provided that the following conditions are
538
+ met:
539
+
540
+ * Redistributions of source code must retain the above copyright
541
+ notice, this list of conditions and the following disclaimer.
542
+
543
+ * Redistributions in binary form must reproduce the above copyright
544
+ notice, this list of conditions and the following disclaimer in the
545
+ documentation and/or other materials provided with the distribution.
546
+
547
+ THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
548
+ "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
549
+ LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
550
+ A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
551
+ HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
552
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
553
+ LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
554
+ DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
555
+ THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
556
+ (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
557
+ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -0,0 +1,60 @@
1
+ ------------------------------------------------------------------------
2
+ Intel(R) Distribution of OpenVINO(TM) tookit for Windows*
3
+
4
+ Components and their licenses:
5
+ * OpenVINO(TM) (Inference Engine) Runtime (Intel(R) OpenVINO(TM) Distribution License): <install_root>/runtime/bin/*
6
+ * Headers (Apache 2.0): <install_root>/runtime/include/*
7
+ * Samples (Apache 2.0): <install_root>/samples/*
8
+ * GNA library (GNA SOFTWARE LICENSE AGREEMENT): <install_root>/runtime/bin/intel64/<Release|Debug>/gna.dll
9
+ * Intel(R) Vision Accelerator Design with Intel(R) Movidius(TM) VPUs (End User License Agreement for the Intel(R) Software Development Products - Floating License):
10
+ <install_root>/runtime/3rdparty/hddl/*
11
+ <install_root>/runtime/3rdparty/myriad/*
12
+ * Intel(R) Movidius(TM) Neural Compute Stick firmware (End User License Agreement for the Intel(R) Software Development Products):
13
+ <install_root>/runtime/bin/intel64/<Release;Debug>/<usb-ma2x8x.mvcmd;pcie-ma2x8x.elf>
14
+ * Installer (End User License Agreement for the Intel(R) Software Development Products): C:/Program Files (x86)/Intel/openvino_installer/*
15
+
16
+ ------------------------------------------------------------------------
17
+ Intel(R) Distribution of OpenVINO(TM) tookit for Linux*
18
+
19
+ Components and their licenses:
20
+ * OpenVINO(TM) (Inference Engine) Runtime (Intel(R) OpenVINO(TM) Distribution License): <install_root>/runtime/lib/*
21
+ * Headers (Apache 2.0): <install_root>/runtime/include/*
22
+ * Samples (Apache 2.0): <install_root>/samples/*
23
+ * GNA library (GNA SOFTWARE LICENSE AGREEMENT): <install_root>/runtime/lib/intel64/libgna.so*
24
+ * Intel(R) Vision Accelerator Design with Intel(R) Movidius(TM) VPUs (End User License Agreement for the Intel(R) Software Development Products - Floating License):
25
+ <install_root>/runtime/3rdparty/hddl/*
26
+ * Intel(R) Movidius(TM) Neural Compute Stick firmware (End User License Agreement for the Intel(R) Software Development Products):
27
+ <install_root>/runtime/lib/intel64/<usb-ma2x8x.mvcmd;pcie-ma2x8x.mvcmd>
28
+ <install_root>/tools/cl_compiler/*
29
+ OpenCL support is provided by ComputeAorta, and is distributed under a license agreement between Intel and Codeplay Software Ltd.
30
+ * Installer (End User License Agreement for the Intel(R) Software Development Products): /opt/intel/openvino_installer/*
31
+
32
+ ------------------------------------------------------------------------
33
+ Intel(R) Distribution of OpenVINO(TM) tookit for macOS*
34
+
35
+ Components and their licenses:
36
+ * OpenVINO(TM) (Inference Engine) Runtime (Intel(R) OpenVINO(TM) Distribution License): <install_root>/runtime/lib/*
37
+ * Headers (Apache 2.0): <install_root>/runtime/include/*
38
+ * Samples (Apache 2.0): <install_root>/samples/*
39
+ * Intel(R) Movidius(TM) Neural Compute Stick firmware (End User License Agreement for the Intel(R) Software Development Products):
40
+ <install_root>/runtime/lib/intel64/<usb-ma2x8x.mvcmd;pcie-ma2x8x.mvcmd>
41
+ * Installer (End User License Agreement for the Intel(R) Software Development Products: <install_root>/openvino_installer/*
42
+
43
+ ------------------------------------------------------------------------
44
+
45
+ Licenses:
46
+ * Intel(R) OpenVINO(TM) Distribution License: <install_root>/docs/licensing/EULA.rtf or EULA.txt
47
+ * End User License Agreement for the Intel(R) Software Development Products: <install_root>/docs/licensing/Intel_Software_Development_Products.rtf or Intel_Software_Development_Products.txt
48
+ * Apache 2.0 <install_root>/docs/licensing/Apache_license.txt
49
+ * GNA SOFTWARE LICENSE AGREEMENT <install_root>/docs/licensing/GNA SOFTWARE LICENSE AGREEMENT.txt
50
+
51
+ ------------------------------------------------------------------------
52
+ Third party programs:
53
+ * OpenVINO(TM) Runtime: <install_root>/docs/licensing/runtime-third-party-programs.txt
54
+ * Documentation: <install_root>/docs/licensing/documentation-third-party-programs.txt
55
+ * Installer: C:/Program Files (x86)/Intel/openvino_installer/third-party-programs.txt, /opt/intel/openvino_installer/third-party-programs.txt
56
+
57
+ ------------------------------------------------------------------------
58
+ Redistributable content:
59
+ * Intel(R) Distribution of OpenVINO(TM) tookit: <install_root>/docs/licensing/redist.txt
60
+
@@ -0,0 +1,42 @@
1
+ This text file is the file (e.g., redist.txt, etc) specified in the accompanying
2
+ End User License Agreement for the Intel(R) Distribution of OpenVINO(TM) Toolkit ("Agreement").
3
+ All capitalized terms used but not defined in this text file have the same meaning as specified in the Agreement.
4
+
5
+ Also included as Redistributables are executables and shared and static libraries you create by linking your program
6
+ with libraries provided by Intel as part of the Materials for this product but which are not listed in this redist.txt file (“Libraries”);
7
+ provided that you do not redistribute those Intel provided libraries or any other portion of those Intel provided libraries in any other way.
8
+
9
+ YOU MAY NOT REDISTRIBUTE THESE MATERIALS UNDER AN EVALUATION LICENSE
10
+
11
+ ################################################################################
12
+ ### OpenVINO(TM) (Inference Engine) Runtime for Windows*
13
+ ################################################################################
14
+ <install_root>/docs/licensing/redist.txt
15
+ <install_root>/runtime/bin/intel64/Debug/*
16
+ <install_root>/runtime/bin/intel64/Release/*
17
+ <install_root>/runtime/3rdparty/hddl/bin/*
18
+ <install_root>/runtime/3rdparty/hddl/config/*
19
+ <install_root>/runtime/3rdparty/hddl/lib/*
20
+ <install_root>/runtime/3rdparty/tbb/bin/*
21
+
22
+ ################################################################################
23
+ ### OpenVINO(TM) (Inference Engine) Runtime for Linux*
24
+ ################################################################################
25
+ <install_root>/docs/licensing/redist.txt
26
+ <install_root>/runtime/3rdparty/hddl/bin/*
27
+ <install_root>/runtime/3rdparty/hddl/config/*
28
+ <install_root>/runtime/3rdparty/hddl/drivers/*
29
+ <install_root>/runtime/3rdparty/hddl/lib/*
30
+ <install_root>/runtime/3rdparty/hddl/generate_udev_rules.sh,install_IVAD_VPU_dependencies.sh
31
+ <install_root>/runtime/3rdparty/tbb/lib/*
32
+ <install_root>/runtime/lib/intel64/*
33
+ <install_root>/tools/cl_compiler/lib/*
34
+
35
+ ################################################################################
36
+ ### OpenVINO(TM) (Inference Engine) Runtime for macOS*
37
+ ################################################################################
38
+ <install_root>/docs/licensing/redist.txt
39
+ <install_root>/runtime/3rdparty/tbb/lib/*
40
+ <install_root>/runtime/lib/intel64/*
41
+
42
+ * Other names and brands may be claimed as the property of others.