gstaichi 0.1.18.dev1__cp310-cp310-manylinux2014_x86_64.manylinux_2_27_x86_64.manylinux_2_28_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 (187) hide show
  1. gstaichi-0.1.18.dev1.data/data/include/GLFW/glfw3.h +6389 -0
  2. gstaichi-0.1.18.dev1.data/data/include/GLFW/glfw3native.h +594 -0
  3. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/instrument.hpp +268 -0
  4. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/libspirv.h +907 -0
  5. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/libspirv.hpp +375 -0
  6. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/linker.hpp +97 -0
  7. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/optimizer.hpp +970 -0
  8. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools/SPIRV-ToolsConfig.cmake +5 -0
  9. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools/SPIRV-ToolsTarget-release.cmake +29 -0
  10. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools/SPIRV-ToolsTarget.cmake +116 -0
  11. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffConfig.cmake +5 -0
  12. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets-release.cmake +19 -0
  13. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-diff/SPIRV-Tools-diffTargets.cmake +123 -0
  14. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-link/SPIRV-Tools-linkConfig.cmake +5 -0
  15. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets-release.cmake +19 -0
  16. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-link/SPIRV-Tools-linkTargets.cmake +123 -0
  17. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintConfig.cmake +5 -0
  18. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets-release.cmake +19 -0
  19. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-lint/SPIRV-Tools-lintTargets.cmake +123 -0
  20. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-opt/SPIRV-Tools-optConfig.cmake +5 -0
  21. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets-release.cmake +19 -0
  22. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-opt/SPIRV-Tools-optTargets.cmake +123 -0
  23. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceConfig.cmake +5 -0
  24. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget-release.cmake +19 -0
  25. gstaichi-0.1.18.dev1.data/data/lib64/cmake/SPIRV-Tools-reduce/SPIRV-Tools-reduceTarget.cmake +123 -0
  26. gstaichi-0.1.18.dev1.data/data/lib64/cmake/glfw3/glfw3Config.cmake +3 -0
  27. gstaichi-0.1.18.dev1.data/data/lib64/cmake/glfw3/glfw3ConfigVersion.cmake +65 -0
  28. gstaichi-0.1.18.dev1.data/data/lib64/cmake/glfw3/glfw3Targets-release.cmake +19 -0
  29. gstaichi-0.1.18.dev1.data/data/lib64/cmake/glfw3/glfw3Targets.cmake +107 -0
  30. gstaichi-0.1.18.dev1.dist-info/METADATA +108 -0
  31. gstaichi-0.1.18.dev1.dist-info/RECORD +187 -0
  32. gstaichi-0.1.18.dev1.dist-info/WHEEL +7 -0
  33. gstaichi-0.1.18.dev1.dist-info/entry_points.txt +2 -0
  34. gstaichi-0.1.18.dev1.dist-info/licenses/LICENSE +201 -0
  35. gstaichi-0.1.18.dev1.dist-info/top_level.txt +1 -0
  36. taichi/__init__.py +44 -0
  37. taichi/__main__.py +5 -0
  38. taichi/_funcs.py +706 -0
  39. taichi/_kernels.py +420 -0
  40. taichi/_lib/__init__.py +3 -0
  41. taichi/_lib/c_api/include/taichi/cpp/taichi.hpp +1401 -0
  42. taichi/_lib/c_api/include/taichi/taichi.h +29 -0
  43. taichi/_lib/c_api/include/taichi/taichi_core.h +1111 -0
  44. taichi/_lib/c_api/include/taichi/taichi_cpu.h +29 -0
  45. taichi/_lib/c_api/include/taichi/taichi_cuda.h +36 -0
  46. taichi/_lib/c_api/include/taichi/taichi_platform.h +55 -0
  47. taichi/_lib/c_api/include/taichi/taichi_unity.h +64 -0
  48. taichi/_lib/c_api/include/taichi/taichi_vulkan.h +151 -0
  49. taichi/_lib/c_api/lib64/libtaichi_c_api.so +0 -0
  50. taichi/_lib/c_api/runtime/runtime_cuda.bc +0 -0
  51. taichi/_lib/c_api/runtime/runtime_x64.bc +0 -0
  52. taichi/_lib/c_api/runtime/slim_libdevice.10.bc +0 -0
  53. taichi/_lib/c_api/taichi/lib64/cmake/taichi/TaichiConfig.cmake +29 -0
  54. taichi/_lib/c_api/taichi/lib64/cmake/taichi/TaichiConfigVersion.cmake +65 -0
  55. taichi/_lib/c_api/taichi/lib64/cmake/taichi/TaichiTargets.cmake +121 -0
  56. taichi/_lib/core/__init__.py +0 -0
  57. taichi/_lib/core/py.typed +0 -0
  58. taichi/_lib/core/taichi_python.cpython-310-x86_64-linux-gnu.so +0 -0
  59. taichi/_lib/core/taichi_python.pyi +3077 -0
  60. taichi/_lib/runtime/runtime_cuda.bc +0 -0
  61. taichi/_lib/runtime/runtime_x64.bc +0 -0
  62. taichi/_lib/runtime/slim_libdevice.10.bc +0 -0
  63. taichi/_lib/utils.py +249 -0
  64. taichi/_logging.py +131 -0
  65. taichi/_main.py +552 -0
  66. taichi/_snode/__init__.py +5 -0
  67. taichi/_snode/fields_builder.py +189 -0
  68. taichi/_snode/snode_tree.py +34 -0
  69. taichi/_ti_module/__init__.py +3 -0
  70. taichi/_ti_module/cppgen.py +309 -0
  71. taichi/_ti_module/module.py +145 -0
  72. taichi/_version.py +1 -0
  73. taichi/_version_check.py +100 -0
  74. taichi/ad/__init__.py +3 -0
  75. taichi/ad/_ad.py +530 -0
  76. taichi/algorithms/__init__.py +3 -0
  77. taichi/algorithms/_algorithms.py +117 -0
  78. taichi/aot/__init__.py +12 -0
  79. taichi/aot/_export.py +28 -0
  80. taichi/aot/conventions/__init__.py +3 -0
  81. taichi/aot/conventions/gfxruntime140/__init__.py +38 -0
  82. taichi/aot/conventions/gfxruntime140/dr.py +244 -0
  83. taichi/aot/conventions/gfxruntime140/sr.py +613 -0
  84. taichi/aot/module.py +253 -0
  85. taichi/aot/utils.py +151 -0
  86. taichi/assets/.git +1 -0
  87. taichi/assets/Go-Regular.ttf +0 -0
  88. taichi/assets/static/imgs/ti_gallery.png +0 -0
  89. taichi/examples/minimal.py +28 -0
  90. taichi/experimental.py +16 -0
  91. taichi/graph/__init__.py +3 -0
  92. taichi/graph/_graph.py +292 -0
  93. taichi/lang/__init__.py +50 -0
  94. taichi/lang/_ndarray.py +348 -0
  95. taichi/lang/_ndrange.py +152 -0
  96. taichi/lang/_texture.py +172 -0
  97. taichi/lang/_wrap_inspect.py +189 -0
  98. taichi/lang/any_array.py +99 -0
  99. taichi/lang/argpack.py +411 -0
  100. taichi/lang/ast/__init__.py +5 -0
  101. taichi/lang/ast/ast_transformer.py +1806 -0
  102. taichi/lang/ast/ast_transformer_utils.py +328 -0
  103. taichi/lang/ast/checkers.py +106 -0
  104. taichi/lang/ast/symbol_resolver.py +57 -0
  105. taichi/lang/ast/transform.py +9 -0
  106. taichi/lang/common_ops.py +310 -0
  107. taichi/lang/exception.py +80 -0
  108. taichi/lang/expr.py +180 -0
  109. taichi/lang/field.py +464 -0
  110. taichi/lang/impl.py +1246 -0
  111. taichi/lang/kernel_arguments.py +157 -0
  112. taichi/lang/kernel_impl.py +1415 -0
  113. taichi/lang/matrix.py +1877 -0
  114. taichi/lang/matrix_ops.py +341 -0
  115. taichi/lang/matrix_ops_utils.py +190 -0
  116. taichi/lang/mesh.py +687 -0
  117. taichi/lang/misc.py +807 -0
  118. taichi/lang/ops.py +1489 -0
  119. taichi/lang/runtime_ops.py +13 -0
  120. taichi/lang/shell.py +35 -0
  121. taichi/lang/simt/__init__.py +5 -0
  122. taichi/lang/simt/block.py +94 -0
  123. taichi/lang/simt/grid.py +7 -0
  124. taichi/lang/simt/subgroup.py +191 -0
  125. taichi/lang/simt/warp.py +96 -0
  126. taichi/lang/snode.py +487 -0
  127. taichi/lang/source_builder.py +150 -0
  128. taichi/lang/struct.py +855 -0
  129. taichi/lang/util.py +381 -0
  130. taichi/linalg/__init__.py +8 -0
  131. taichi/linalg/matrixfree_cg.py +310 -0
  132. taichi/linalg/sparse_cg.py +59 -0
  133. taichi/linalg/sparse_matrix.py +303 -0
  134. taichi/linalg/sparse_solver.py +123 -0
  135. taichi/math/__init__.py +11 -0
  136. taichi/math/_complex.py +204 -0
  137. taichi/math/mathimpl.py +886 -0
  138. taichi/profiler/__init__.py +6 -0
  139. taichi/profiler/kernel_metrics.py +260 -0
  140. taichi/profiler/kernel_profiler.py +592 -0
  141. taichi/profiler/memory_profiler.py +15 -0
  142. taichi/profiler/scoped_profiler.py +36 -0
  143. taichi/shaders/Circles_vk.frag +29 -0
  144. taichi/shaders/Circles_vk.vert +45 -0
  145. taichi/shaders/Circles_vk_frag.spv +0 -0
  146. taichi/shaders/Circles_vk_vert.spv +0 -0
  147. taichi/shaders/Lines_vk.frag +9 -0
  148. taichi/shaders/Lines_vk.vert +11 -0
  149. taichi/shaders/Lines_vk_frag.spv +0 -0
  150. taichi/shaders/Lines_vk_vert.spv +0 -0
  151. taichi/shaders/Mesh_vk.frag +71 -0
  152. taichi/shaders/Mesh_vk.vert +68 -0
  153. taichi/shaders/Mesh_vk_frag.spv +0 -0
  154. taichi/shaders/Mesh_vk_vert.spv +0 -0
  155. taichi/shaders/Particles_vk.frag +95 -0
  156. taichi/shaders/Particles_vk.vert +73 -0
  157. taichi/shaders/Particles_vk_frag.spv +0 -0
  158. taichi/shaders/Particles_vk_vert.spv +0 -0
  159. taichi/shaders/SceneLines2quad_vk_comp.spv +0 -0
  160. taichi/shaders/SceneLines_vk.frag +9 -0
  161. taichi/shaders/SceneLines_vk.vert +12 -0
  162. taichi/shaders/SceneLines_vk_frag.spv +0 -0
  163. taichi/shaders/SceneLines_vk_vert.spv +0 -0
  164. taichi/shaders/SetImage_vk.frag +21 -0
  165. taichi/shaders/SetImage_vk.vert +15 -0
  166. taichi/shaders/SetImage_vk_frag.spv +0 -0
  167. taichi/shaders/SetImage_vk_vert.spv +0 -0
  168. taichi/shaders/Triangles_vk.frag +16 -0
  169. taichi/shaders/Triangles_vk.vert +29 -0
  170. taichi/shaders/Triangles_vk_frag.spv +0 -0
  171. taichi/shaders/Triangles_vk_vert.spv +0 -0
  172. taichi/shaders/lines2quad_vk_comp.spv +0 -0
  173. taichi/sparse/__init__.py +3 -0
  174. taichi/sparse/_sparse_grid.py +77 -0
  175. taichi/tools/__init__.py +12 -0
  176. taichi/tools/diagnose.py +124 -0
  177. taichi/tools/np2ply.py +364 -0
  178. taichi/tools/vtk.py +38 -0
  179. taichi/types/__init__.py +19 -0
  180. taichi/types/annotations.py +47 -0
  181. taichi/types/compound_types.py +90 -0
  182. taichi/types/enums.py +49 -0
  183. taichi/types/ndarray_type.py +147 -0
  184. taichi/types/primitive_types.py +203 -0
  185. taichi/types/quant.py +88 -0
  186. taichi/types/texture_type.py +85 -0
  187. taichi/types/utils.py +13 -0

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.