gstaichi 0.1.25.dev0__cp312-cp312-macosx_15_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 (168) hide show
  1. gstaichi/__init__.py +40 -0
  2. gstaichi/__main__.py +5 -0
  3. gstaichi/_funcs.py +706 -0
  4. gstaichi/_kernels.py +420 -0
  5. gstaichi/_lib/__init__.py +3 -0
  6. gstaichi/_lib/core/__init__.py +0 -0
  7. gstaichi/_lib/core/gstaichi_python.cpython-312-darwin.so +0 -0
  8. gstaichi/_lib/core/gstaichi_python.pyi +2939 -0
  9. gstaichi/_lib/core/py.typed +0 -0
  10. gstaichi/_lib/runtime/libMoltenVK.dylib +0 -0
  11. gstaichi/_lib/runtime/runtime_arm64.bc +0 -0
  12. gstaichi/_lib/utils.py +249 -0
  13. gstaichi/_logging.py +131 -0
  14. gstaichi/_main.py +545 -0
  15. gstaichi/_snode/__init__.py +5 -0
  16. gstaichi/_snode/fields_builder.py +187 -0
  17. gstaichi/_snode/snode_tree.py +34 -0
  18. gstaichi/_test_tools/__init__.py +0 -0
  19. gstaichi/_test_tools/load_kernel_string.py +30 -0
  20. gstaichi/_version.py +1 -0
  21. gstaichi/_version_check.py +103 -0
  22. gstaichi/ad/__init__.py +3 -0
  23. gstaichi/ad/_ad.py +530 -0
  24. gstaichi/algorithms/__init__.py +3 -0
  25. gstaichi/algorithms/_algorithms.py +117 -0
  26. gstaichi/assets/.git +1 -0
  27. gstaichi/assets/Go-Regular.ttf +0 -0
  28. gstaichi/assets/static/imgs/ti_gallery.png +0 -0
  29. gstaichi/examples/minimal.py +28 -0
  30. gstaichi/experimental.py +16 -0
  31. gstaichi/lang/__init__.py +50 -0
  32. gstaichi/lang/_ndarray.py +352 -0
  33. gstaichi/lang/_ndrange.py +152 -0
  34. gstaichi/lang/_template_mapper.py +199 -0
  35. gstaichi/lang/_texture.py +172 -0
  36. gstaichi/lang/_wrap_inspect.py +189 -0
  37. gstaichi/lang/any_array.py +99 -0
  38. gstaichi/lang/argpack.py +411 -0
  39. gstaichi/lang/ast/__init__.py +5 -0
  40. gstaichi/lang/ast/ast_transformer.py +1318 -0
  41. gstaichi/lang/ast/ast_transformer_utils.py +341 -0
  42. gstaichi/lang/ast/ast_transformers/__init__.py +0 -0
  43. gstaichi/lang/ast/ast_transformers/call_transformer.py +267 -0
  44. gstaichi/lang/ast/ast_transformers/function_def_transformer.py +320 -0
  45. gstaichi/lang/ast/checkers.py +106 -0
  46. gstaichi/lang/ast/symbol_resolver.py +57 -0
  47. gstaichi/lang/ast/transform.py +9 -0
  48. gstaichi/lang/common_ops.py +310 -0
  49. gstaichi/lang/exception.py +80 -0
  50. gstaichi/lang/expr.py +180 -0
  51. gstaichi/lang/field.py +466 -0
  52. gstaichi/lang/impl.py +1241 -0
  53. gstaichi/lang/kernel_arguments.py +157 -0
  54. gstaichi/lang/kernel_impl.py +1382 -0
  55. gstaichi/lang/matrix.py +1881 -0
  56. gstaichi/lang/matrix_ops.py +341 -0
  57. gstaichi/lang/matrix_ops_utils.py +190 -0
  58. gstaichi/lang/mesh.py +687 -0
  59. gstaichi/lang/misc.py +778 -0
  60. gstaichi/lang/ops.py +1494 -0
  61. gstaichi/lang/runtime_ops.py +13 -0
  62. gstaichi/lang/shell.py +35 -0
  63. gstaichi/lang/simt/__init__.py +5 -0
  64. gstaichi/lang/simt/block.py +94 -0
  65. gstaichi/lang/simt/grid.py +7 -0
  66. gstaichi/lang/simt/subgroup.py +191 -0
  67. gstaichi/lang/simt/warp.py +96 -0
  68. gstaichi/lang/snode.py +489 -0
  69. gstaichi/lang/source_builder.py +150 -0
  70. gstaichi/lang/struct.py +855 -0
  71. gstaichi/lang/util.py +381 -0
  72. gstaichi/linalg/__init__.py +8 -0
  73. gstaichi/linalg/matrixfree_cg.py +310 -0
  74. gstaichi/linalg/sparse_cg.py +59 -0
  75. gstaichi/linalg/sparse_matrix.py +303 -0
  76. gstaichi/linalg/sparse_solver.py +123 -0
  77. gstaichi/math/__init__.py +11 -0
  78. gstaichi/math/_complex.py +205 -0
  79. gstaichi/math/mathimpl.py +886 -0
  80. gstaichi/profiler/__init__.py +6 -0
  81. gstaichi/profiler/kernel_metrics.py +260 -0
  82. gstaichi/profiler/kernel_profiler.py +586 -0
  83. gstaichi/profiler/memory_profiler.py +15 -0
  84. gstaichi/profiler/scoped_profiler.py +36 -0
  85. gstaichi/sparse/__init__.py +3 -0
  86. gstaichi/sparse/_sparse_grid.py +77 -0
  87. gstaichi/tools/__init__.py +12 -0
  88. gstaichi/tools/diagnose.py +117 -0
  89. gstaichi/tools/np2ply.py +364 -0
  90. gstaichi/tools/vtk.py +38 -0
  91. gstaichi/types/__init__.py +19 -0
  92. gstaichi/types/annotations.py +47 -0
  93. gstaichi/types/compound_types.py +90 -0
  94. gstaichi/types/enums.py +49 -0
  95. gstaichi/types/ndarray_type.py +147 -0
  96. gstaichi/types/primitive_types.py +206 -0
  97. gstaichi/types/quant.py +88 -0
  98. gstaichi/types/texture_type.py +85 -0
  99. gstaichi/types/utils.py +13 -0
  100. gstaichi-0.1.25.dev0.data/data/include/GLFW/glfw3.h +6389 -0
  101. gstaichi-0.1.25.dev0.data/data/include/GLFW/glfw3native.h +594 -0
  102. gstaichi-0.1.25.dev0.data/data/include/spirv-tools/instrument.hpp +268 -0
  103. gstaichi-0.1.25.dev0.data/data/include/spirv-tools/libspirv.h +907 -0
  104. gstaichi-0.1.25.dev0.data/data/include/spirv-tools/libspirv.hpp +375 -0
  105. gstaichi-0.1.25.dev0.data/data/include/spirv-tools/linker.hpp +97 -0
  106. gstaichi-0.1.25.dev0.data/data/include/spirv-tools/optimizer.hpp +970 -0
  107. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/GLSL.std.450.h +114 -0
  108. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv.h +2568 -0
  109. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv.hpp +2579 -0
  110. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cfg.hpp +168 -0
  111. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_common.hpp +1920 -0
  112. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cpp.hpp +93 -0
  113. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross.hpp +1171 -0
  114. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_c.h +1074 -0
  115. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_containers.hpp +754 -0
  116. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_error_handling.hpp +94 -0
  117. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_parsed_ir.hpp +256 -0
  118. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_util.hpp +37 -0
  119. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_glsl.hpp +1001 -0
  120. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_hlsl.hpp +406 -0
  121. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_msl.hpp +1273 -0
  122. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_parser.hpp +103 -0
  123. gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_reflect.hpp +91 -0
  124. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsConfig.cmake +5 -0
  125. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsTarget-release.cmake +29 -0
  126. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsTarget.cmake +114 -0
  127. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffConfig.cmake +5 -0
  128. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets-release.cmake +19 -0
  129. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets.cmake +123 -0
  130. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkConfig.cmake +5 -0
  131. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets-release.cmake +19 -0
  132. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets.cmake +123 -0
  133. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintConfig.cmake +5 -0
  134. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets-release.cmake +19 -0
  135. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets.cmake +123 -0
  136. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optConfig.cmake +5 -0
  137. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets-release.cmake +19 -0
  138. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets.cmake +123 -0
  139. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceConfig.cmake +5 -0
  140. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget-release.cmake +19 -0
  141. gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget.cmake +123 -0
  142. gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3Config.cmake +3 -0
  143. gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake +65 -0
  144. gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake +19 -0
  145. gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3Targets.cmake +107 -0
  146. gstaichi-0.1.25.dev0.data/data/lib/libSPIRV-Tools-shared.dylib +0 -0
  147. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_c/cmake/spirv_cross_cConfig-release.cmake +19 -0
  148. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_c/cmake/spirv_cross_cConfig.cmake +123 -0
  149. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_core/cmake/spirv_cross_coreConfig-release.cmake +19 -0
  150. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_core/cmake/spirv_cross_coreConfig.cmake +106 -0
  151. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_cpp/cmake/spirv_cross_cppConfig-release.cmake +19 -0
  152. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_cpp/cmake/spirv_cross_cppConfig.cmake +123 -0
  153. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_glsl/cmake/spirv_cross_glslConfig-release.cmake +19 -0
  154. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_glsl/cmake/spirv_cross_glslConfig.cmake +123 -0
  155. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_hlsl/cmake/spirv_cross_hlslConfig-release.cmake +19 -0
  156. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_hlsl/cmake/spirv_cross_hlslConfig.cmake +123 -0
  157. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_msl/cmake/spirv_cross_mslConfig-release.cmake +19 -0
  158. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_msl/cmake/spirv_cross_mslConfig.cmake +123 -0
  159. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_reflect/cmake/spirv_cross_reflectConfig-release.cmake +19 -0
  160. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_reflect/cmake/spirv_cross_reflectConfig.cmake +106 -0
  161. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_util/cmake/spirv_cross_utilConfig-release.cmake +19 -0
  162. gstaichi-0.1.25.dev0.data/data/share/spirv_cross_util/cmake/spirv_cross_utilConfig.cmake +123 -0
  163. gstaichi-0.1.25.dev0.dist-info/METADATA +105 -0
  164. gstaichi-0.1.25.dev0.dist-info/RECORD +168 -0
  165. gstaichi-0.1.25.dev0.dist-info/WHEEL +5 -0
  166. gstaichi-0.1.25.dev0.dist-info/entry_points.txt +2 -0
  167. gstaichi-0.1.25.dev0.dist-info/licenses/LICENSE +201 -0
  168. gstaichi-0.1.25.dev0.dist-info/top_level.txt +1 -0
@@ -0,0 +1,168 @@
1
+ gstaichi/__init__.py,sha256=5vrTfU6EGDz-sQDvku3Ps_84fxKh0NmqDg0cRNUIR84,1003
2
+ gstaichi/__main__.py,sha256=AJZ5EW2aF0oRFIpOR7HbHSCxR5tujHb_qqFcn3I0tCA,48
3
+ gstaichi/_funcs.py,sha256=qH9VMUS6nN0gaRAMSmc0NBrLPGFSDyexWO9tNmz-FV0,23237
4
+ gstaichi/_kernels.py,sha256=M0xE_zhKBCeMRHsacuonGUW2D5QaggQVK-qDblGo2AI,14244
5
+ gstaichi/_logging.py,sha256=Utlv0ZjZLA3xlq80yJN8o91aD6FH8H6W3Wiyl04S8ts,3682
6
+ gstaichi/_main.py,sha256=MnixJ111LOAbx1H6-rvvnvqVLYwK0i6N76eoRx47Yuo,17990
7
+ gstaichi/_version.py,sha256=Y3aY5EPp1LmZ0cpxr2_gWVlUdfDz7wJiMuVMYlHSyz8,28
8
+ gstaichi/_version_check.py,sha256=aGUtrx_Q5U8hC5hI2ju_RIA-zzxfUfRIb1ZlU1TiL_M,3653
9
+ gstaichi/experimental.py,sha256=qNLQ6EYcDoapr3hELwXSJXECT5XrTncqv5LRF34Pfhs,343
10
+ gstaichi/_lib/__init__.py,sha256=eo5ZIaTVkv6CzHZpK6tmSgIBZNu0V9UCRhSkieXtgKA,71
11
+ gstaichi/_lib/utils.py,sha256=DQeT2jYpn06tWkwbGYq3efQfZlTpmSu_xq5mUG3vwZM,7841
12
+ gstaichi/_lib/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
13
+ gstaichi/_lib/core/gstaichi_python.cpython-312-darwin.so,sha256=9UeTKy-y1ajgSvnGGHrlA08OOYTjVwPsQtZ7bUtLpXk,105047304
14
+ gstaichi/_lib/core/gstaichi_python.pyi,sha256=8l9jWfGWLGIMD3Mx00ZuXJA2il6BPUwBnFp7Vkr57mQ,111430
15
+ gstaichi/_lib/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
16
+ gstaichi/_lib/runtime/libMoltenVK.dylib,sha256=bv34qLD2kzftQaZ-JZ49dxMZali6a9hh0Ak0QZBu1BQ,14024368
17
+ gstaichi/_lib/runtime/runtime_arm64.bc,sha256=NESCb2rp8mRR63Xvd0Sb_eGGq7RGjV9Aa4o8koEKf2U,147376
18
+ gstaichi/_snode/__init__.py,sha256=Vn0wolaGt5L69DCZXOs8Hwo1-_hXq_YM63AwHedYuVQ,102
19
+ gstaichi/_snode/fields_builder.py,sha256=Wz_73sJUC1CPWSxueiRb3Qdh_fEqHd1PkOpb3gGSvFM,6763
20
+ gstaichi/_snode/snode_tree.py,sha256=a1Kexuk6uoMOY9ES4zLFhOkIWkSPtXNGna9U5OZvO1s,1197
21
+ gstaichi/_test_tools/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
22
+ gstaichi/_test_tools/load_kernel_string.py,sha256=7U-oAWLfH9xYhVWHlnOUrUm2GIJ5xJqwDljneFPqU-w,1007
23
+ gstaichi/ad/__init__.py,sha256=T-qo_Lq1g1U2jTN_e8bZuKxxGYQceO9FJGUgPzBhZVo,46
24
+ gstaichi/ad/_ad.py,sha256=ZW_CM_rIv4U290FBpk-NCUWdJJGR87zKx4d_7W1GdKo,19212
25
+ gstaichi/algorithms/__init__.py,sha256=jRJLdZCnqEuH6k5XLI8Q7VjnJtRkGh18Y5pd2AvqOKA,43
26
+ gstaichi/algorithms/_algorithms.py,sha256=o-Bpi77G8bSnUQuUC62lX6cDlaFBBzIQGuTwdMCYfKQ,3705
27
+ gstaichi/assets/.git,sha256=_sepXJOH-4A9o4jtu-46jG2P6XHHbsvGW3642aKNQBc,43
28
+ gstaichi/assets/Go-Regular.ttf,sha256=S7gpWTE2QWxqOezcRUguBS91rDdOZFm5r2jU-6J5OWw,134988
29
+ gstaichi/assets/static/imgs/ti_gallery.png,sha256=rOeh8JlUXb-ZdkTaei3cVyJXZBWOqcJBLdndAORUdtU,263871
30
+ gstaichi/examples/minimal.py,sha256=F_53i9o5jGg9vfvezX03htHtgpEccI9szDrLUMnWFPU,605
31
+ gstaichi/lang/__init__.py,sha256=33TbgOo8y0UzQSPtAVbMXYRJyR_DkiudpBJffpratZQ,1256
32
+ gstaichi/lang/_ndarray.py,sha256=E3MMzd6D8y1N1VPmmqPSDydEmkqiJAVjFSXtcdRxYkQ,10774
33
+ gstaichi/lang/_ndrange.py,sha256=gnaA19o5ws774I0-NvfQSAjOeO9RcxWCh05TdE-jRUs,5769
34
+ gstaichi/lang/_template_mapper.py,sha256=lIx-Vd5xtuKLjwJmh0b3vFuC124SH3sB474_T745WCs,10114
35
+ gstaichi/lang/_texture.py,sha256=Knohwpg3ZytOncqKz_dJt9PY4nAyMMurVrts9y8aCT0,6612
36
+ gstaichi/lang/_wrap_inspect.py,sha256=qduVQNZXDB22ISJRmcZTbmALFc5gmjaA4yGVbkRr9_Y,6986
37
+ gstaichi/lang/any_array.py,sha256=NvJpXq08tAVU4XNCw1npdTgUllqRA2DD-1YChKuF-yw,3292
38
+ gstaichi/lang/argpack.py,sha256=NhDBpPuNbOgYF0_di8tzoaCbrSC3gf4cI_ytQqD5STM,16777
39
+ gstaichi/lang/common_ops.py,sha256=oMpmfX3wLRWC-QYF6x1nu084zKLUd31YTPww80uslBY,8458
40
+ gstaichi/lang/exception.py,sha256=Jns3tMC5T0qHKJVNpwqag8_WOU_8caRLWGoVKcqIKFY,2085
41
+ gstaichi/lang/expr.py,sha256=uWDZeeNiyOZ03jZcEzr0MYwsc8QkcxHoeKwCu8jN9YU,6407
42
+ gstaichi/lang/field.py,sha256=E5MxyoQyFIM5kK8ZqvlXuBsoOmWRgEpzStBZyXNNx4E,14424
43
+ gstaichi/lang/impl.py,sha256=FinHMVRyTGDTr895ag3IMLZWWHMlVmpyAyJJx8lfI7c,41488
44
+ gstaichi/lang/kernel_arguments.py,sha256=yZiIcjHs9xLGljZ-gSzNjAPaRqqb0u7-MzdnM0KYCQ8,6407
45
+ gstaichi/lang/kernel_impl.py,sha256=ZqDXFkkdnC9wfMkfwzdLmt84nFtxCHBdyCdcPhNMy3M,61211
46
+ gstaichi/lang/matrix.py,sha256=25EXjWcIEBBvVNAgl86xKOTcWWp8YMvVHOqiFXAKACc,63826
47
+ gstaichi/lang/matrix_ops.py,sha256=msDw-IIgr6BdwW_3nCgaU-4pl_j4pYQyUb9DPPLp510,10058
48
+ gstaichi/lang/matrix_ops_utils.py,sha256=bN78mfjvuKhdIZLn0PXYljiSZSiOeMPQJzO-4LgvtJk,5245
49
+ gstaichi/lang/mesh.py,sha256=uw-GuloR55l8pH6FjRgyCjkadGYjnU44lGQZq3P9CGE,27071
50
+ gstaichi/lang/misc.py,sha256=ywmRZIQPbhSg5p7IWEdXmzt8pN54LZ8QJXi3Wr3nweo,23302
51
+ gstaichi/lang/ops.py,sha256=DepTUWLWBHia7gzNSRshd_9zb4uQH_c3uUQ8Du2nlq4,44425
52
+ gstaichi/lang/runtime_ops.py,sha256=n5g-QPu2zVrxqqEhzBXR3xP9ULvdidv2DyCaNR3TRVY,224
53
+ gstaichi/lang/shell.py,sha256=RLVp21VXnuuH7AarvmdhmkJSj5Z4jY12W510-K9fi2M,1060
54
+ gstaichi/lang/snode.py,sha256=eau1yHHi7zR6OdWhPR2hIweSptYppfw0feWLzc6CLJs,17124
55
+ gstaichi/lang/source_builder.py,sha256=IyD5ZK7g27eINvhueBaoRBd24ZWSsCc_fQccS-8mSuo,5809
56
+ gstaichi/lang/struct.py,sha256=hz4X5DxIcOnXU5EDJ3z8DLfsVqlw5sqyHSPZm_RguJs,31169
57
+ gstaichi/lang/util.py,sha256=BWLW1HRW4pWZgeBHZUEPmq7H3L1gkgUO0M7ifcEEi2k,9115
58
+ gstaichi/lang/ast/__init__.py,sha256=lMX3ghPfKtq1QPJDIPnTy_T7G9_V_5J3HUvXBKRgMLY,211
59
+ gstaichi/lang/ast/ast_transformer.py,sha256=oCW_nkHH_Z_sRbNEne30LsiKFFZSAZjbjqQHlI509_M,58121
60
+ gstaichi/lang/ast/ast_transformer_utils.py,sha256=Q0tPJLdiF-KWv_O7thPXoCkMspetEupXGFjuVSn0Scc,11517
61
+ gstaichi/lang/ast/checkers.py,sha256=vCJunwWGIuU6k6iIt67skcddDqhPNG-MRty-Tki3Uto,3800
62
+ gstaichi/lang/ast/symbol_resolver.py,sha256=8kBIBvARgZSsF-qXJ2jFVW6M-9YJ57XxRzFKp4O1ooE,1772
63
+ gstaichi/lang/ast/transform.py,sha256=8zURUELi8CzlvY0eZRiphXGd2h0FB0j2SHrS3JhenT4,266
64
+ gstaichi/lang/ast/ast_transformers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
65
+ gstaichi/lang/ast/ast_transformers/call_transformer.py,sha256=6wqRr1p_vIgaD3eylPYU3rS14JPfFqshvAb6bujgWiM,10909
66
+ gstaichi/lang/ast/ast_transformers/function_def_transformer.py,sha256=y92kO77M9SoJtVBVZ6dbNEqQBRzb9EZuHEg0qnuj018,13094
67
+ gstaichi/lang/simt/__init__.py,sha256=zLQjw-9zUx4-etcHPN4CFORATRF3hiJEXY1Yaog3-vs,124
68
+ gstaichi/lang/simt/block.py,sha256=dvZKkdRg6s5v0ah8HyVhA18hDZa2j-OjiJl0BWI0TEw,3639
69
+ gstaichi/lang/simt/grid.py,sha256=VBYkD5YyKuoSWLfH330a8jH5DPlTEpf5DqJAiSgJjQE,140
70
+ gstaichi/lang/simt/subgroup.py,sha256=Hv_KBrdbWc-CGAtaboSaMMpSvIjscabdisvJoyeshT0,3781
71
+ gstaichi/lang/simt/warp.py,sha256=wTBY73sD-n4fIdmVrhCmRIhCF19aNDo-_033tIRkCrE,3087
72
+ gstaichi/linalg/__init__.py,sha256=ijfsC4MnlrO5CNYK8-rinLgWIRCh_N4sXwzvVY85kxM,267
73
+ gstaichi/linalg/matrixfree_cg.py,sha256=k2Mb88Q2WJARSahl0XcrPu3RUFELSHdswonZmR3J6ZE,10338
74
+ gstaichi/linalg/sparse_cg.py,sha256=uFu9HaQNcE99fq_KqEghb-5-oIAZ7eMWJrCbzHgvak8,2558
75
+ gstaichi/linalg/sparse_matrix.py,sha256=VqIDmo9B65ugGl4vVFDgQNUno2NdQnUWzu_NazurCZo,10971
76
+ gstaichi/linalg/sparse_solver.py,sha256=5Na5ITJKP1BMDxDw5OLoE4qXZJdFt6tP4f60pDt-ogY,4928
77
+ gstaichi/math/__init__.py,sha256=vtN9Hm-e6nPHbjOwS_X06A9uLakNtIXeR10vT4whATw,203
78
+ gstaichi/math/_complex.py,sha256=FRy47TDF1jQluxzS8ZNIt846IncGvlg8lycYbZvjt4k,4980
79
+ gstaichi/math/mathimpl.py,sha256=uscq5LNB4wFC8ZUpI6EYZJ0VnfnXPO4wuPmgd_2na8E,21733
80
+ gstaichi/profiler/__init__.py,sha256=rFlnpZXzcyAVZqWE_mUiAhswtxCRc_jhws-19BwMCyc,207
81
+ gstaichi/profiler/kernel_metrics.py,sha256=h2UfrtqBAIfpP-xy953YkMtfa-zHe97W7FWSoFKeWbg,7623
82
+ gstaichi/profiler/kernel_profiler.py,sha256=-6y4lwuK5GS6nNM0BFXX0zoy-vlCv6E_Q54RNKCn1pA,22276
83
+ gstaichi/profiler/memory_profiler.py,sha256=FNs5xAeFg5d28-8JyVVh2SqOy2-rUB14CiBQje4K0cQ,343
84
+ gstaichi/profiler/scoped_profiler.py,sha256=dXsvN_gmtuHepZNh6gdQIOT7t4aqS_LjqrOuYncCk-M,971
85
+ gstaichi/sparse/__init__.py,sha256=cP9BeV3d5HBgLefeZPuZkaFVSi7DZ4LEasWvPcml0L0,44
86
+ gstaichi/sparse/_sparse_grid.py,sha256=wxnOG4CVthWXJurlyPm2AwZCr9OduPqMkZzbRNmD9ZE,2432
87
+ gstaichi/tools/__init__.py,sha256=Hejqi4SgdfMyc-JunAxKUJRyrVDaVL1zAsICw-L3BF4,317
88
+ gstaichi/tools/diagnose.py,sha256=qXwyU4gXBUFDKbq3Um_-fGb6Z0qRZ2-8Hw974peOJ6c,3448
89
+ gstaichi/tools/np2ply.py,sha256=cDTdB5jUUDd9GATmKhrxpCETfwrgib2o-o0hgqzBI6Q,15271
90
+ gstaichi/tools/vtk.py,sha256=CIOcgpiyiT3-ff8kPzxh1yUiM1SyzYSBKIaYcMJ_dOQ,1032
91
+ gstaichi/types/__init__.py,sha256=OMB4V4ycYKUy_b5IDAFec7c1qgXchkmLONY00OdZbmI,602
92
+ gstaichi/types/annotations.py,sha256=EfbJk4N0ebn7QJ6-BrYZCm0MX0K7iTSh3hR94mOkFRg,992
93
+ gstaichi/types/compound_types.py,sha256=t9IghGj7TWyQoc0ErljRlC_Lh_rq8w4Z1kSItff7RdE,2389
94
+ gstaichi/types/enums.py,sha256=NZGVkk-v3s3FIMEkweXrfSRgyq8-TZGBIqGGD2uDEG8,2050
95
+ gstaichi/types/ndarray_type.py,sha256=YMwr7GmtnmOxxpq7IOQomjHg2aOZsdRxKXVYtmzBMsg,6820
96
+ gstaichi/types/primitive_types.py,sha256=ykf9vGRSOR4lDBsOLBBr6p9ZVeWtkgiF57g-usi_EgY,4067
97
+ gstaichi/types/quant.py,sha256=uuluyzfa-geNJeNi-WPPaNr7LjETqcFQC9ZtRhp2K-8,2973
98
+ gstaichi/types/texture_type.py,sha256=u1--G0XYobhPRfjHe67K6BlzltQJADWIECm75kiZ_iI,2359
99
+ gstaichi/types/utils.py,sha256=wUvL5sLs550T45pSpOJZMVhGijQ7FJCgeOSYPm8-jlg,281
100
+ gstaichi-0.1.25.dev0.data/data/include/GLFW/glfw3.h,sha256=DdoqFswVaPjMg39kIprLTCXtLAm_SL32AewOM9BYazI,234397
101
+ gstaichi-0.1.25.dev0.data/data/include/GLFW/glfw3native.h,sha256=Ii0M4bk3Q9gtdaX9py5oYXPZf3Gvg21LEN8ut_YgXDQ,18803
102
+ gstaichi-0.1.25.dev0.data/data/include/spirv-tools/instrument.hpp,sha256=ya2k9Ldn9TO_6Av24nu1IcboAqQ6F3kCWKqylc0X-Kw,11649
103
+ gstaichi-0.1.25.dev0.data/data/include/spirv-tools/libspirv.h,sha256=zK7BxuhZ9pj0VT42VaW0eN8oaO3Dqge8vutJONH-AHI,41781
104
+ gstaichi-0.1.25.dev0.data/data/include/spirv-tools/libspirv.hpp,sha256=U9p_Bp76GOvXtxZEsnODMo1Vkm8SkfXVFYtVwKCzbL8,14637
105
+ gstaichi-0.1.25.dev0.data/data/include/spirv-tools/linker.hpp,sha256=Ls3qz9nQMRSBTWfp6DMBALdpOZTPMHRG2ObIuYf6OpI,3594
106
+ gstaichi-0.1.25.dev0.data/data/include/spirv-tools/optimizer.hpp,sha256=GH1UGi40uly0Gkau9ycjXc3vdC8fglaOFk-5OiEPWaI,49090
107
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/GLSL.std.450.h,sha256=b1bglGY_3tRDWrHT2MJNcq2zv4KDL8AC7PCg1NllQ-k,3073
108
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv.h,sha256=orhWU1eZKmCgcVJ-7Yt-zFzsRsxh8Bw4EAFw-jRZw_A,132357
109
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv.hpp,sha256=CUXuWMG_54jKz9Dt3eTwmbiIMmSF7RmIvgb0yqeq3D4,125162
110
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cfg.hpp,sha256=IbpE_IcD4w1GjIlGFu79biqlPkpQ-mNj9Q3RePJvAgQ,3827
111
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_common.hpp,sha256=hrEmJbIlQAl8n0S8RwXN2Yo_Qz4aXe-_McqaaAybP8c,47812
112
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cpp.hpp,sha256=aJ_UWlJBs_KclwL1ZqLJRn1CdI3kBy4ISdYC6uZq2gY,2637
113
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross.hpp,sha256=ToozBntAj7C5dnNDoQSymzr6F3OwrAqVHBQCJVqJOK4,50906
114
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_c.h,sha256=Uf8i-6OYh0Z20jWOwftgAKXSrHYY3UlTgjD1ai77nxE,51487
115
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_containers.hpp,sha256=hKRGsaHCb8aesqmaV9MPr_Cp4YAD2dcklhcGXdAQ3L8,17960
116
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_error_handling.hpp,sha256=jKKPWeKf-E-FJUyJxbwy09zYKASACdlnaEUcpb6Di6o,2621
117
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_parsed_ir.hpp,sha256=ZF4IflfhbUsmIWVkds4SlzQEXNaGBzYVmEW-1CMORs8,9270
118
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_cross_util.hpp,sha256=CUKwuuiI65hmha2vLWdB0V1IEXEQVtjbxo-oD0DRhIA,1402
119
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_glsl.hpp,sha256=XvS8t-MCVJH2fwkcnrxtECdNqRQLd6PF0rv9w3P4K-E,47618
120
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_hlsl.hpp,sha256=0zJmxOVji-yHIlC4Wph2RD5E0dYHM1jWJtLjrsJAY5M,16383
121
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_msl.hpp,sha256=PIGKi-xLa5z6O5Qy3LbU93hzvKeG5QTepebI6Ny3siQ,60204
122
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_parser.hpp,sha256=5cwhStHYe9eBg_LnKpAsD7mU3Bjnqm6D6Gyyh1cIwvI,2633
123
+ gstaichi-0.1.25.dev0.data/data/include/spirv_cross/spirv_reflect.hpp,sha256=qOs1tPZl1C6f-xivCfK2wbzD7575LdfZ3QQ8HpQ6i5Y,2503
124
+ gstaichi-0.1.25.dev0.data/data/lib/libSPIRV-Tools-shared.dylib,sha256=uwbCfTtkP-d71MIhHGWjF5aQcMTj2aYg38icy55zPk8,1899416
125
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsConfig.cmake,sha256=dMEufEjR-_w2-FovZM86J6L4mLAC0V_ghy3NSn-quds,225
126
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsTarget-release.cmake,sha256=udoS0FC5wj8lU72VVq8GeTJTzseWZ0btwt7-ULwiQHI,1396
127
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools/SPIRV-ToolsTarget.cmake,sha256=vx24AucAN1drz4V3WjySdbl3D6KTsmn_XVYb3hht8Ig,4419
128
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffConfig.cmake,sha256=72Wr7X0CYzx3Vt-rI2YcqgXu0RFeVWJAlre9dqxANEE,275
129
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets-release.cmake,sha256=TGr8cW-33wobWQGGXLpGsV3hkVrzmSTCHk3PNiInwQE,873
130
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets.cmake,sha256=mn183rcp87-r_mBuzK1qQnprD5icDGNesRhhcKWerv4,5010
131
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkConfig.cmake,sha256=_LKmSzAEq3x0KnvZ0G8XeoLuMDuHoL78IAdJpeJGdew,275
132
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets-release.cmake,sha256=UXaiPMo8XzoeYmZNDFGfHEhMi2bo38qJ5ymF6qC6Qgo,873
133
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets.cmake,sha256=lIKD2R2v5-2L0UpqjIH9CIDBKWknMHYUKgWfK_pFn8U,4970
134
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintConfig.cmake,sha256=NUFb5HZvW5-c5yAt91Yo64tMFfue-1vRa1t7H6o3IBY,275
135
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets-release.cmake,sha256=twMwM0B9qJYgOxID49zEQIF5NtyhnGB0HXksUb-XH14,873
136
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets.cmake,sha256=JG8ctvqSzUuOYEms-waLgrIfnH6y1ps3vm11A4MaB88,5010
137
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optConfig.cmake,sha256=vKq0g25OpIoYmEt_h6On0dYj8OKETBlrkn3f_jhAHzE,270
138
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets-release.cmake,sha256=zmHEMsi4kvj04bKXZcDXBGB98gMQM8yGujq2bBQMn8I,866
139
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets.cmake,sha256=CjNXDkAi9hTLVjaAq9bPHJ_armEkgd8J_uX_jz80WT4,4971
140
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceConfig.cmake,sha256=7zFj1xzP5RT6FkohmRm4KFdC8zcR-XdvdlF3_Sm-8Gw,285
141
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget-release.cmake,sha256=izVCfxb76CbAZ_9To3d0ao3Kc4JzltGydMyZG2kwdKo,887
142
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget.cmake,sha256=L3aATbP_gMEMXsCv2M2R3SQcLHDkN_Ra05XgJtj-hyQ,5019
143
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3Config.cmake,sha256=DSZvP4sK4yRATcNqjKivAbW_WNFbHOgG6eMY6JXpt1U,115
144
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake,sha256=d2IEfPkbPohGWgrQLPckr9vTKqxPUUFO1ZgxVeIKwa0,2762
145
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake,sha256=BpDZPBIm6Qs3gqDUufi-ocWC39UDWZwGtCkxm_4dB3M,789
146
+ gstaichi-0.1.25.dev0.data/data/lib/cmake/glfw3/glfw3Targets.cmake,sha256=dK8hfR7rhZKoRPumDRQPHqzqNmEaSFa1L7Ri4ie_tik,4195
147
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_c/cmake/spirv_cross_cConfig-release.cmake,sha256=7DDeJII8Fu7nuVtqY9APJeyJQmRHOEesYb4GZB5U2Nk,852
148
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_c/cmake/spirv_cross_cConfig.cmake,sha256=Hghnpsb7jyqriJ43FDo9rM8xJZ9V3fTEPyyar4kpRYM,5184
149
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_core/cmake/spirv_cross_coreConfig-release.cmake,sha256=UsdH4n6NgNjTml-XU9CmWSZaSYVcCAefPWvjunerKgI,873
150
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_core/cmake/spirv_cross_coreConfig.cmake,sha256=SVjYWo1lYL73oV06i4YcWVfj6417V6-R2iw5oTEBMIk,4145
151
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_cpp/cmake/spirv_cross_cppConfig-release.cmake,sha256=pYi8QcsV3wckWAogPIHSycvi9CL9jUb6cpnRSl4YKI0,866
152
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_cpp/cmake/spirv_cross_cppConfig.cmake,sha256=OW25x5am_T88hrS4Ad3GfKFgCmL0RYQOb-ICwlZd8SE,4992
153
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_glsl/cmake/spirv_cross_glslConfig-release.cmake,sha256=N-qk5YvM_c0SxKtwE3eFkpt85Rsna_WBiziGedJXsgg,873
154
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_glsl/cmake/spirv_cross_glslConfig.cmake,sha256=pk-o4Ad1jJdLXREPCkcaAoqLJMhDWGGONA5GUSYB5Oo,4997
155
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_hlsl/cmake/spirv_cross_hlslConfig-release.cmake,sha256=49Uid2s5zMuu0rPuxdUttbXqVpys5JNo5iTPu-g3pcM,873
156
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_hlsl/cmake/spirv_cross_hlslConfig.cmake,sha256=3FUp-uxkYPr2s2E-NFi1_RJSIilktszr0H1Nt_f4Jtw,4997
157
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_msl/cmake/spirv_cross_mslConfig-release.cmake,sha256=aaEvTgqXscm1VxqHppZaHaKjrdVuZBdwenembdtUKSc,866
158
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_msl/cmake/spirv_cross_mslConfig.cmake,sha256=LQ7qHYk4h7buccDVzPckmHVezUqCGoyqbEnrYy_UeU0,4992
159
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_reflect/cmake/spirv_cross_reflectConfig-release.cmake,sha256=pd1hm0LV2XXMOSeMdOm8p7WC70lIe--0tsZRbFivahA,894
160
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_reflect/cmake/spirv_cross_reflectConfig.cmake,sha256=RU7YyZWYefRWl0Nf3cmwX6YaMbmbJdh-xMTReb2gihs,4160
161
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_util/cmake/spirv_cross_utilConfig-release.cmake,sha256=Lfo9_3aEg1ucY0bYHahk7qv_6LqKxanxKO42bNDUmGo,873
162
+ gstaichi-0.1.25.dev0.data/data/share/spirv_cross_util/cmake/spirv_cross_utilConfig.cmake,sha256=ndic8GTSOmp0tv6meX-YQwxEgmCx78aAf0s9d1KwTDU,4997
163
+ gstaichi-0.1.25.dev0.dist-info/licenses/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
164
+ gstaichi-0.1.25.dev0.dist-info/METADATA,sha256=hhewCriZJuXirR5Oz7ekqbTEE2HRBCpb1ynCjLtuJrw,4668
165
+ gstaichi-0.1.25.dev0.dist-info/WHEEL,sha256=Z_neHFi1AXQw_xnYOOQB9Iktc_z9wsHFxr1PYQMogdw,109
166
+ gstaichi-0.1.25.dev0.dist-info/entry_points.txt,sha256=zCEhfa09khn5bjORszCmecpH2mDo6y5n5dlJADI6KHc,43
167
+ gstaichi-0.1.25.dev0.dist-info/top_level.txt,sha256=BoKkPzj6Sfycl5Ge5sB9QRDVZvFB5R0sxbZn4YNPb80,9
168
+ gstaichi-0.1.25.dev0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: false
4
+ Tag: cp312-cp312-macosx_15_0_arm64
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ti = gstaichi._main:main
@@ -0,0 +1,201 @@
1
+ Apache License
2
+ Version 2.0, January 2004
3
+ http://www.apache.org/licenses/
4
+
5
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
6
+
7
+ 1. Definitions.
8
+
9
+ "License" shall mean the terms and conditions for use, reproduction,
10
+ and distribution as defined by Sections 1 through 9 of this document.
11
+
12
+ "Licensor" shall mean the copyright owner or entity authorized by
13
+ the copyright owner that is granting the License.
14
+
15
+ "Legal Entity" shall mean the union of the acting entity and all
16
+ other entities that control, are controlled by, or are under common
17
+ control with that entity. For the purposes of this definition,
18
+ "control" means (i) the power, direct or indirect, to cause the
19
+ direction or management of such entity, whether by contract or
20
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
21
+ outstanding shares, or (iii) beneficial ownership of such entity.
22
+
23
+ "You" (or "Your") shall mean an individual or Legal Entity
24
+ exercising permissions granted by this License.
25
+
26
+ "Source" form shall mean the preferred form for making modifications,
27
+ including but not limited to software source code, documentation
28
+ source, and configuration files.
29
+
30
+ "Object" form shall mean any form resulting from mechanical
31
+ transformation or translation of a Source form, including but
32
+ not limited to compiled object code, generated documentation,
33
+ and conversions to other media types.
34
+
35
+ "Work" shall mean the work of authorship, whether in Source or
36
+ Object form, made available under the License, as indicated by a
37
+ copyright notice that is included in or attached to the work
38
+ (an example is provided in the Appendix below).
39
+
40
+ "Derivative Works" shall mean any work, whether in Source or Object
41
+ form, that is based on (or derived from) the Work and for which the
42
+ editorial revisions, annotations, elaborations, or other modifications
43
+ represent, as a whole, an original work of authorship. For the purposes
44
+ of this License, Derivative Works shall not include works that remain
45
+ separable from, or merely link (or bind by name) to the interfaces of,
46
+ the Work and Derivative Works thereof.
47
+
48
+ "Contribution" shall mean any work of authorship, including
49
+ the original version of the Work and any modifications or additions
50
+ to that Work or Derivative Works thereof, that is intentionally
51
+ submitted to Licensor for inclusion in the Work by the copyright owner
52
+ or by an individual or Legal Entity authorized to submit on behalf of
53
+ the copyright owner. For the purposes of this definition, "submitted"
54
+ means any form of electronic, verbal, or written communication sent
55
+ to the Licensor or its representatives, including but not limited to
56
+ communication on electronic mailing lists, source code control systems,
57
+ and issue tracking systems that are managed by, or on behalf of, the
58
+ Licensor for the purpose of discussing and improving the Work, but
59
+ excluding communication that is conspicuously marked or otherwise
60
+ designated in writing by the copyright owner as "Not a Contribution."
61
+
62
+ "Contributor" shall mean Licensor and any individual or Legal Entity
63
+ on behalf of whom a Contribution has been received by Licensor and
64
+ subsequently incorporated within the Work.
65
+
66
+ 2. Grant of Copyright License. Subject to the terms and conditions of
67
+ this License, each Contributor hereby grants to You a perpetual,
68
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
69
+ copyright license to reproduce, prepare Derivative Works of,
70
+ publicly display, publicly perform, sublicense, and distribute the
71
+ Work and such Derivative Works in Source or Object form.
72
+
73
+ 3. Grant of Patent License. Subject to the terms and conditions of
74
+ this License, each Contributor hereby grants to You a perpetual,
75
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
76
+ (except as stated in this section) patent license to make, have made,
77
+ use, offer to sell, sell, import, and otherwise transfer the Work,
78
+ where such license applies only to those patent claims licensable
79
+ by such Contributor that are necessarily infringed by their
80
+ Contribution(s) alone or by combination of their Contribution(s)
81
+ with the Work to which such Contribution(s) was submitted. If You
82
+ institute patent litigation against any entity (including a
83
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
84
+ or a Contribution incorporated within the Work constitutes direct
85
+ or contributory patent infringement, then any patent licenses
86
+ granted to You under this License for that Work shall terminate
87
+ as of the date such litigation is filed.
88
+
89
+ 4. Redistribution. You may reproduce and distribute copies of the
90
+ Work or Derivative Works thereof in any medium, with or without
91
+ modifications, and in Source or Object form, provided that You
92
+ meet the following conditions:
93
+
94
+ (a) You must give any other recipients of the Work or
95
+ Derivative Works a copy of this License; and
96
+
97
+ (b) You must cause any modified files to carry prominent notices
98
+ stating that You changed the files; and
99
+
100
+ (c) You must retain, in the Source form of any Derivative Works
101
+ that You distribute, all copyright, patent, trademark, and
102
+ attribution notices from the Source form of the Work,
103
+ excluding those notices that do not pertain to any part of
104
+ the Derivative Works; and
105
+
106
+ (d) If the Work includes a "NOTICE" text file as part of its
107
+ distribution, then any Derivative Works that You distribute must
108
+ include a readable copy of the attribution notices contained
109
+ within such NOTICE file, excluding those notices that do not
110
+ pertain to any part of the Derivative Works, in at least one
111
+ of the following places: within a NOTICE text file distributed
112
+ as part of the Derivative Works; within the Source form or
113
+ documentation, if provided along with the Derivative Works; or,
114
+ within a display generated by the Derivative Works, if and
115
+ wherever such third-party notices normally appear. The contents
116
+ of the NOTICE file are for informational purposes only and
117
+ do not modify the License. You may add Your own attribution
118
+ notices within Derivative Works that You distribute, alongside
119
+ or as an addendum to the NOTICE text from the Work, provided
120
+ that such additional attribution notices cannot be construed
121
+ as modifying the License.
122
+
123
+ You may add Your own copyright statement to Your modifications and
124
+ may provide additional or different license terms and conditions
125
+ for use, reproduction, or distribution of Your modifications, or
126
+ for any such Derivative Works as a whole, provided Your use,
127
+ reproduction, and distribution of the Work otherwise complies with
128
+ the conditions stated in this License.
129
+
130
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
131
+ any Contribution intentionally submitted for inclusion in the Work
132
+ by You to the Licensor shall be under the terms and conditions of
133
+ this License, without any additional terms or conditions.
134
+ Notwithstanding the above, nothing herein shall supersede or modify
135
+ the terms of any separate license agreement you may have executed
136
+ with Licensor regarding such Contributions.
137
+
138
+ 6. Trademarks. This License does not grant permission to use the trade
139
+ names, trademarks, service marks, or product names of the Licensor,
140
+ except as required for reasonable and customary use in describing the
141
+ origin of the Work and reproducing the content of the NOTICE file.
142
+
143
+ 7. Disclaimer of Warranty. Unless required by applicable law or
144
+ agreed to in writing, Licensor provides the Work (and each
145
+ Contributor provides its Contributions) on an "AS IS" BASIS,
146
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
147
+ implied, including, without limitation, any warranties or conditions
148
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
149
+ PARTICULAR PURPOSE. You are solely responsible for determining the
150
+ appropriateness of using or redistributing the Work and assume any
151
+ risks associated with Your exercise of permissions under this License.
152
+
153
+ 8. Limitation of Liability. In no event and under no legal theory,
154
+ whether in tort (including negligence), contract, or otherwise,
155
+ unless required by applicable law (such as deliberate and grossly
156
+ negligent acts) or agreed to in writing, shall any Contributor be
157
+ liable to You for damages, including any direct, indirect, special,
158
+ incidental, or consequential damages of any character arising as a
159
+ result of this License or out of the use or inability to use the
160
+ Work (including but not limited to damages for loss of goodwill,
161
+ work stoppage, computer failure or malfunction, or any and all
162
+ other commercial damages or losses), even if such Contributor
163
+ has been advised of the possibility of such damages.
164
+
165
+ 9. Accepting Warranty or Additional Liability. While redistributing
166
+ the Work or Derivative Works thereof, You may choose to offer,
167
+ and charge a fee for, acceptance of support, warranty, indemnity,
168
+ or other liability obligations and/or rights consistent with this
169
+ License. However, in accepting such obligations, You may act only
170
+ on Your own behalf and on Your sole responsibility, not on behalf
171
+ of any other Contributor, and only if You agree to indemnify,
172
+ defend, and hold each Contributor harmless for any liability
173
+ incurred by, or claims asserted against, such Contributor by reason
174
+ of your accepting any such warranty or additional liability.
175
+
176
+ END OF TERMS AND CONDITIONS
177
+
178
+ APPENDIX: How to apply the Apache License to your work.
179
+
180
+ To apply the Apache License to your work, attach the following
181
+ boilerplate notice, with the fields enclosed by brackets "[]"
182
+ replaced with your own identifying information. (Don't include
183
+ the brackets!) The text should be enclosed in the appropriate
184
+ comment syntax for the file format. We also recommend that a
185
+ file or class name and description of purpose be included on the
186
+ same "printed page" as the copyright notice for easier
187
+ identification within third-party archives.
188
+
189
+ Copyright [yyyy] [name of copyright owner]
190
+
191
+ Licensed under the Apache License, Version 2.0 (the "License");
192
+ you may not use this file except in compliance with the License.
193
+ You may obtain a copy of the License at
194
+
195
+ http://www.apache.org/licenses/LICENSE-2.0
196
+
197
+ Unless required by applicable law or agreed to in writing, software
198
+ distributed under the License is distributed on an "AS IS" BASIS,
199
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
200
+ See the License for the specific language governing permissions and
201
+ limitations under the License.
@@ -0,0 +1 @@
1
+ gstaichi