gstaichi 0.1.18.dev1__cp310-cp310-win_amd64.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 (198) hide show
  1. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools/cmake/SPIRV-ToolsConfig.cmake +5 -0
  2. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget-release.cmake +29 -0
  3. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget.cmake +113 -0
  4. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffConfig.cmake +5 -0
  5. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets-release.cmake +19 -0
  6. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets.cmake +122 -0
  7. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkConfig.cmake +5 -0
  8. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets-release.cmake +19 -0
  9. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets.cmake +122 -0
  10. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintConfig.cmake +5 -0
  11. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets-release.cmake +19 -0
  12. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets.cmake +122 -0
  13. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optConfig.cmake +5 -0
  14. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets-release.cmake +19 -0
  15. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets.cmake +122 -0
  16. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceConfig.cmake +5 -0
  17. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget-release.cmake +19 -0
  18. gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget.cmake +122 -0
  19. gstaichi-0.1.18.dev1.data/data/bin/SPIRV-Tools-shared.dll +0 -0
  20. gstaichi-0.1.18.dev1.data/data/include/GLFW/glfw3.h +6389 -0
  21. gstaichi-0.1.18.dev1.data/data/include/GLFW/glfw3native.h +594 -0
  22. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/instrument.hpp +268 -0
  23. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/libspirv.h +907 -0
  24. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/libspirv.hpp +375 -0
  25. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/linker.hpp +97 -0
  26. gstaichi-0.1.18.dev1.data/data/include/spirv-tools/optimizer.hpp +970 -0
  27. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-diff.lib +0 -0
  28. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-link.lib +0 -0
  29. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-lint.lib +0 -0
  30. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-opt.lib +0 -0
  31. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-reduce.lib +0 -0
  32. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-shared.lib +0 -0
  33. gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools.lib +0 -0
  34. gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3Config.cmake +3 -0
  35. gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake +65 -0
  36. gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake +19 -0
  37. gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3Targets.cmake +107 -0
  38. gstaichi-0.1.18.dev1.data/data/lib/glfw3.lib +0 -0
  39. gstaichi-0.1.18.dev1.dist-info/METADATA +108 -0
  40. gstaichi-0.1.18.dev1.dist-info/RECORD +198 -0
  41. gstaichi-0.1.18.dev1.dist-info/WHEEL +5 -0
  42. gstaichi-0.1.18.dev1.dist-info/entry_points.txt +2 -0
  43. gstaichi-0.1.18.dev1.dist-info/licenses/LICENSE +201 -0
  44. gstaichi-0.1.18.dev1.dist-info/top_level.txt +1 -0
  45. taichi/CHANGELOG.md +15 -0
  46. taichi/__init__.py +44 -0
  47. taichi/__main__.py +5 -0
  48. taichi/_funcs.py +706 -0
  49. taichi/_kernels.py +420 -0
  50. taichi/_lib/__init__.py +3 -0
  51. taichi/_lib/c_api/bin/taichi_c_api.dll +0 -0
  52. taichi/_lib/c_api/include/taichi/cpp/taichi.hpp +1401 -0
  53. taichi/_lib/c_api/include/taichi/taichi.h +29 -0
  54. taichi/_lib/c_api/include/taichi/taichi_core.h +1111 -0
  55. taichi/_lib/c_api/include/taichi/taichi_cpu.h +29 -0
  56. taichi/_lib/c_api/include/taichi/taichi_cuda.h +36 -0
  57. taichi/_lib/c_api/include/taichi/taichi_platform.h +55 -0
  58. taichi/_lib/c_api/include/taichi/taichi_unity.h +64 -0
  59. taichi/_lib/c_api/include/taichi/taichi_vulkan.h +151 -0
  60. taichi/_lib/c_api/lib/taichi_c_api.lib +0 -0
  61. taichi/_lib/c_api/runtime/runtime_cuda.bc +0 -0
  62. taichi/_lib/c_api/runtime/runtime_x64.bc +0 -0
  63. taichi/_lib/c_api/runtime/slim_libdevice.10.bc +0 -0
  64. taichi/_lib/c_api/taichi/lib/cmake/taichi/TaichiConfig.cmake +29 -0
  65. taichi/_lib/c_api/taichi/lib/cmake/taichi/TaichiConfigVersion.cmake +65 -0
  66. taichi/_lib/c_api/taichi/lib/cmake/taichi/TaichiTargets.cmake +121 -0
  67. taichi/_lib/core/__init__.py +0 -0
  68. taichi/_lib/core/py.typed +0 -0
  69. taichi/_lib/core/taichi_python.cp310-win_amd64.pyd +0 -0
  70. taichi/_lib/core/taichi_python.pyi +3077 -0
  71. taichi/_lib/runtime/runtime_cuda.bc +0 -0
  72. taichi/_lib/runtime/runtime_x64.bc +0 -0
  73. taichi/_lib/runtime/slim_libdevice.10.bc +0 -0
  74. taichi/_lib/utils.py +249 -0
  75. taichi/_logging.py +131 -0
  76. taichi/_main.py +552 -0
  77. taichi/_snode/__init__.py +5 -0
  78. taichi/_snode/fields_builder.py +189 -0
  79. taichi/_snode/snode_tree.py +34 -0
  80. taichi/_ti_module/__init__.py +3 -0
  81. taichi/_ti_module/cppgen.py +309 -0
  82. taichi/_ti_module/module.py +145 -0
  83. taichi/_version.py +1 -0
  84. taichi/_version_check.py +100 -0
  85. taichi/ad/__init__.py +3 -0
  86. taichi/ad/_ad.py +530 -0
  87. taichi/algorithms/__init__.py +3 -0
  88. taichi/algorithms/_algorithms.py +117 -0
  89. taichi/aot/__init__.py +12 -0
  90. taichi/aot/_export.py +28 -0
  91. taichi/aot/conventions/__init__.py +3 -0
  92. taichi/aot/conventions/gfxruntime140/__init__.py +38 -0
  93. taichi/aot/conventions/gfxruntime140/dr.py +244 -0
  94. taichi/aot/conventions/gfxruntime140/sr.py +613 -0
  95. taichi/aot/module.py +253 -0
  96. taichi/aot/utils.py +151 -0
  97. taichi/assets/.git +1 -0
  98. taichi/assets/Go-Regular.ttf +0 -0
  99. taichi/assets/static/imgs/ti_gallery.png +0 -0
  100. taichi/examples/minimal.py +28 -0
  101. taichi/experimental.py +16 -0
  102. taichi/graph/__init__.py +3 -0
  103. taichi/graph/_graph.py +292 -0
  104. taichi/lang/__init__.py +50 -0
  105. taichi/lang/_ndarray.py +348 -0
  106. taichi/lang/_ndrange.py +152 -0
  107. taichi/lang/_texture.py +172 -0
  108. taichi/lang/_wrap_inspect.py +189 -0
  109. taichi/lang/any_array.py +99 -0
  110. taichi/lang/argpack.py +411 -0
  111. taichi/lang/ast/__init__.py +5 -0
  112. taichi/lang/ast/ast_transformer.py +1806 -0
  113. taichi/lang/ast/ast_transformer_utils.py +328 -0
  114. taichi/lang/ast/checkers.py +106 -0
  115. taichi/lang/ast/symbol_resolver.py +57 -0
  116. taichi/lang/ast/transform.py +9 -0
  117. taichi/lang/common_ops.py +310 -0
  118. taichi/lang/exception.py +80 -0
  119. taichi/lang/expr.py +180 -0
  120. taichi/lang/field.py +464 -0
  121. taichi/lang/impl.py +1246 -0
  122. taichi/lang/kernel_arguments.py +157 -0
  123. taichi/lang/kernel_impl.py +1415 -0
  124. taichi/lang/matrix.py +1877 -0
  125. taichi/lang/matrix_ops.py +341 -0
  126. taichi/lang/matrix_ops_utils.py +190 -0
  127. taichi/lang/mesh.py +687 -0
  128. taichi/lang/misc.py +807 -0
  129. taichi/lang/ops.py +1489 -0
  130. taichi/lang/runtime_ops.py +13 -0
  131. taichi/lang/shell.py +35 -0
  132. taichi/lang/simt/__init__.py +5 -0
  133. taichi/lang/simt/block.py +94 -0
  134. taichi/lang/simt/grid.py +7 -0
  135. taichi/lang/simt/subgroup.py +191 -0
  136. taichi/lang/simt/warp.py +96 -0
  137. taichi/lang/snode.py +487 -0
  138. taichi/lang/source_builder.py +150 -0
  139. taichi/lang/struct.py +855 -0
  140. taichi/lang/util.py +381 -0
  141. taichi/linalg/__init__.py +8 -0
  142. taichi/linalg/matrixfree_cg.py +310 -0
  143. taichi/linalg/sparse_cg.py +59 -0
  144. taichi/linalg/sparse_matrix.py +303 -0
  145. taichi/linalg/sparse_solver.py +123 -0
  146. taichi/math/__init__.py +11 -0
  147. taichi/math/_complex.py +204 -0
  148. taichi/math/mathimpl.py +886 -0
  149. taichi/profiler/__init__.py +6 -0
  150. taichi/profiler/kernel_metrics.py +260 -0
  151. taichi/profiler/kernel_profiler.py +592 -0
  152. taichi/profiler/memory_profiler.py +15 -0
  153. taichi/profiler/scoped_profiler.py +36 -0
  154. taichi/shaders/Circles_vk.frag +29 -0
  155. taichi/shaders/Circles_vk.vert +45 -0
  156. taichi/shaders/Circles_vk_frag.spv +0 -0
  157. taichi/shaders/Circles_vk_vert.spv +0 -0
  158. taichi/shaders/Lines_vk.frag +9 -0
  159. taichi/shaders/Lines_vk.vert +11 -0
  160. taichi/shaders/Lines_vk_frag.spv +0 -0
  161. taichi/shaders/Lines_vk_vert.spv +0 -0
  162. taichi/shaders/Mesh_vk.frag +71 -0
  163. taichi/shaders/Mesh_vk.vert +68 -0
  164. taichi/shaders/Mesh_vk_frag.spv +0 -0
  165. taichi/shaders/Mesh_vk_vert.spv +0 -0
  166. taichi/shaders/Particles_vk.frag +95 -0
  167. taichi/shaders/Particles_vk.vert +73 -0
  168. taichi/shaders/Particles_vk_frag.spv +0 -0
  169. taichi/shaders/Particles_vk_vert.spv +0 -0
  170. taichi/shaders/SceneLines2quad_vk_comp.spv +0 -0
  171. taichi/shaders/SceneLines_vk.frag +9 -0
  172. taichi/shaders/SceneLines_vk.vert +12 -0
  173. taichi/shaders/SceneLines_vk_frag.spv +0 -0
  174. taichi/shaders/SceneLines_vk_vert.spv +0 -0
  175. taichi/shaders/SetImage_vk.frag +21 -0
  176. taichi/shaders/SetImage_vk.vert +15 -0
  177. taichi/shaders/SetImage_vk_frag.spv +0 -0
  178. taichi/shaders/SetImage_vk_vert.spv +0 -0
  179. taichi/shaders/Triangles_vk.frag +16 -0
  180. taichi/shaders/Triangles_vk.vert +29 -0
  181. taichi/shaders/Triangles_vk_frag.spv +0 -0
  182. taichi/shaders/Triangles_vk_vert.spv +0 -0
  183. taichi/shaders/lines2quad_vk_comp.spv +0 -0
  184. taichi/sparse/__init__.py +3 -0
  185. taichi/sparse/_sparse_grid.py +77 -0
  186. taichi/tools/__init__.py +12 -0
  187. taichi/tools/diagnose.py +124 -0
  188. taichi/tools/np2ply.py +364 -0
  189. taichi/tools/vtk.py +38 -0
  190. taichi/types/__init__.py +19 -0
  191. taichi/types/annotations.py +47 -0
  192. taichi/types/compound_types.py +90 -0
  193. taichi/types/enums.py +49 -0
  194. taichi/types/ndarray_type.py +147 -0
  195. taichi/types/primitive_types.py +203 -0
  196. taichi/types/quant.py +88 -0
  197. taichi/types/texture_type.py +85 -0
  198. taichi/types/utils.py +13 -0
@@ -0,0 +1,3 @@
1
+ include(CMakeFindDependencyMacro)
2
+ find_dependency(Threads)
3
+ include("${CMAKE_CURRENT_LIST_DIR}/glfw3Targets.cmake")
@@ -0,0 +1,65 @@
1
+ # This is a basic version file for the Config-mode of find_package().
2
+ # It is used by write_basic_package_version_file() as input file for configure_file()
3
+ # to create a version-file which can be installed along a config.cmake file.
4
+ #
5
+ # The created file sets PACKAGE_VERSION_EXACT if the current version string and
6
+ # the requested version string are exactly the same and it sets
7
+ # PACKAGE_VERSION_COMPATIBLE if the current version is >= requested version,
8
+ # but only if the requested major version is the same as the current one.
9
+ # The variable CVF_VERSION must be set before calling configure_file().
10
+
11
+
12
+ set(PACKAGE_VERSION "3.4.0")
13
+
14
+ if(PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION)
15
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
16
+ else()
17
+
18
+ if("3.4.0" MATCHES "^([0-9]+)\\.")
19
+ set(CVF_VERSION_MAJOR "${CMAKE_MATCH_1}")
20
+ if(NOT CVF_VERSION_MAJOR VERSION_EQUAL 0)
21
+ string(REGEX REPLACE "^0+" "" CVF_VERSION_MAJOR "${CVF_VERSION_MAJOR}")
22
+ endif()
23
+ else()
24
+ set(CVF_VERSION_MAJOR "3.4.0")
25
+ endif()
26
+
27
+ if(PACKAGE_FIND_VERSION_RANGE)
28
+ # both endpoints of the range must have the expected major version
29
+ math (EXPR CVF_VERSION_MAJOR_NEXT "${CVF_VERSION_MAJOR} + 1")
30
+ if (NOT PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
31
+ OR ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX_MAJOR STREQUAL CVF_VERSION_MAJOR)
32
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND NOT PACKAGE_FIND_VERSION_MAX VERSION_LESS_EQUAL CVF_VERSION_MAJOR_NEXT)))
33
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
34
+ elseif(PACKAGE_FIND_VERSION_MIN_MAJOR STREQUAL CVF_VERSION_MAJOR
35
+ AND ((PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "INCLUDE" AND PACKAGE_VERSION VERSION_LESS_EQUAL PACKAGE_FIND_VERSION_MAX)
36
+ OR (PACKAGE_FIND_VERSION_RANGE_MAX STREQUAL "EXCLUDE" AND PACKAGE_VERSION VERSION_LESS PACKAGE_FIND_VERSION_MAX)))
37
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
38
+ else()
39
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
40
+ endif()
41
+ else()
42
+ if(PACKAGE_FIND_VERSION_MAJOR STREQUAL CVF_VERSION_MAJOR)
43
+ set(PACKAGE_VERSION_COMPATIBLE TRUE)
44
+ else()
45
+ set(PACKAGE_VERSION_COMPATIBLE FALSE)
46
+ endif()
47
+
48
+ if(PACKAGE_FIND_VERSION STREQUAL PACKAGE_VERSION)
49
+ set(PACKAGE_VERSION_EXACT TRUE)
50
+ endif()
51
+ endif()
52
+ endif()
53
+
54
+
55
+ # if the installed or the using project don't have CMAKE_SIZEOF_VOID_P set, ignore it:
56
+ if("${CMAKE_SIZEOF_VOID_P}" STREQUAL "" OR "8" STREQUAL "")
57
+ return()
58
+ endif()
59
+
60
+ # check that the installed version has the same 32/64bit-ness as the one which is currently searching:
61
+ if(NOT CMAKE_SIZEOF_VOID_P STREQUAL "8")
62
+ math(EXPR installedBits "8 * 8")
63
+ set(PACKAGE_VERSION "${PACKAGE_VERSION} (${installedBits}bit)")
64
+ set(PACKAGE_VERSION_UNSUITABLE TRUE)
65
+ endif()
@@ -0,0 +1,19 @@
1
+ #----------------------------------------------------------------
2
+ # Generated CMake target import file for configuration "Release".
3
+ #----------------------------------------------------------------
4
+
5
+ # Commands may need to know the format version.
6
+ set(CMAKE_IMPORT_FILE_VERSION 1)
7
+
8
+ # Import target "glfw" for configuration "Release"
9
+ set_property(TARGET glfw APPEND PROPERTY IMPORTED_CONFIGURATIONS RELEASE)
10
+ set_target_properties(glfw PROPERTIES
11
+ IMPORTED_LINK_INTERFACE_LANGUAGES_RELEASE "C"
12
+ IMPORTED_LOCATION_RELEASE "${_IMPORT_PREFIX}/lib/glfw3.lib"
13
+ )
14
+
15
+ list(APPEND _cmake_import_check_targets glfw )
16
+ list(APPEND _cmake_import_check_files_for_glfw "${_IMPORT_PREFIX}/lib/glfw3.lib" )
17
+
18
+ # Commands beyond this point should not need to know the version.
19
+ set(CMAKE_IMPORT_FILE_VERSION)
@@ -0,0 +1,107 @@
1
+ # Generated by CMake
2
+
3
+ if("${CMAKE_MAJOR_VERSION}.${CMAKE_MINOR_VERSION}" LESS 2.8)
4
+ message(FATAL_ERROR "CMake >= 2.8.3 required")
5
+ endif()
6
+ if(CMAKE_VERSION VERSION_LESS "2.8.3")
7
+ message(FATAL_ERROR "CMake >= 2.8.3 required")
8
+ endif()
9
+ cmake_policy(PUSH)
10
+ cmake_policy(VERSION 2.8.3...3.29)
11
+ #----------------------------------------------------------------
12
+ # Generated CMake target import file.
13
+ #----------------------------------------------------------------
14
+
15
+ # Commands may need to know the format version.
16
+ set(CMAKE_IMPORT_FILE_VERSION 1)
17
+
18
+ # Protect against multiple inclusion, which would fail when already imported targets are added once more.
19
+ set(_cmake_targets_defined "")
20
+ set(_cmake_targets_not_defined "")
21
+ set(_cmake_expected_targets "")
22
+ foreach(_cmake_expected_target IN ITEMS glfw)
23
+ list(APPEND _cmake_expected_targets "${_cmake_expected_target}")
24
+ if(TARGET "${_cmake_expected_target}")
25
+ list(APPEND _cmake_targets_defined "${_cmake_expected_target}")
26
+ else()
27
+ list(APPEND _cmake_targets_not_defined "${_cmake_expected_target}")
28
+ endif()
29
+ endforeach()
30
+ unset(_cmake_expected_target)
31
+ if(_cmake_targets_defined STREQUAL _cmake_expected_targets)
32
+ unset(_cmake_targets_defined)
33
+ unset(_cmake_targets_not_defined)
34
+ unset(_cmake_expected_targets)
35
+ unset(CMAKE_IMPORT_FILE_VERSION)
36
+ cmake_policy(POP)
37
+ return()
38
+ endif()
39
+ if(NOT _cmake_targets_defined STREQUAL "")
40
+ string(REPLACE ";" ", " _cmake_targets_defined_text "${_cmake_targets_defined}")
41
+ string(REPLACE ";" ", " _cmake_targets_not_defined_text "${_cmake_targets_not_defined}")
42
+ message(FATAL_ERROR "Some (but not all) targets in this export set were already defined.\nTargets Defined: ${_cmake_targets_defined_text}\nTargets not yet defined: ${_cmake_targets_not_defined_text}\n")
43
+ endif()
44
+ unset(_cmake_targets_defined)
45
+ unset(_cmake_targets_not_defined)
46
+ unset(_cmake_expected_targets)
47
+
48
+
49
+ # Compute the installation prefix relative to this file.
50
+ get_filename_component(_IMPORT_PREFIX "${CMAKE_CURRENT_LIST_FILE}" PATH)
51
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
52
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
53
+ get_filename_component(_IMPORT_PREFIX "${_IMPORT_PREFIX}" PATH)
54
+ if(_IMPORT_PREFIX STREQUAL "/")
55
+ set(_IMPORT_PREFIX "")
56
+ endif()
57
+
58
+ # Create imported target glfw
59
+ add_library(glfw STATIC IMPORTED)
60
+
61
+ set_target_properties(glfw PROPERTIES
62
+ INTERFACE_INCLUDE_DIRECTORIES "${_IMPORT_PREFIX}/include"
63
+ INTERFACE_LINK_LIBRARIES "\$<LINK_ONLY:Threads::Threads>"
64
+ )
65
+
66
+ # Load information for each installed configuration.
67
+ file(GLOB _cmake_config_files "${CMAKE_CURRENT_LIST_DIR}/glfw3Targets-*.cmake")
68
+ foreach(_cmake_config_file IN LISTS _cmake_config_files)
69
+ include("${_cmake_config_file}")
70
+ endforeach()
71
+ unset(_cmake_config_file)
72
+ unset(_cmake_config_files)
73
+
74
+ # Cleanup temporary variables.
75
+ set(_IMPORT_PREFIX)
76
+
77
+ # Loop over all imported files and verify that they actually exist
78
+ foreach(_cmake_target IN LISTS _cmake_import_check_targets)
79
+ if(CMAKE_VERSION VERSION_LESS "3.28"
80
+ OR NOT DEFINED _cmake_import_check_xcframework_for_${_cmake_target}
81
+ OR NOT IS_DIRECTORY "${_cmake_import_check_xcframework_for_${_cmake_target}}")
82
+ foreach(_cmake_file IN LISTS "_cmake_import_check_files_for_${_cmake_target}")
83
+ if(NOT EXISTS "${_cmake_file}")
84
+ message(FATAL_ERROR "The imported target \"${_cmake_target}\" references the file
85
+ \"${_cmake_file}\"
86
+ but this file does not exist. Possible reasons include:
87
+ * The file was deleted, renamed, or moved to another location.
88
+ * An install or uninstall procedure did not complete successfully.
89
+ * The installation package was faulty and contained
90
+ \"${CMAKE_CURRENT_LIST_FILE}\"
91
+ but not all the files it references.
92
+ ")
93
+ endif()
94
+ endforeach()
95
+ endif()
96
+ unset(_cmake_file)
97
+ unset("_cmake_import_check_files_for_${_cmake_target}")
98
+ endforeach()
99
+ unset(_cmake_target)
100
+ unset(_cmake_import_check_targets)
101
+
102
+ # This file does not depend on other imported targets which have
103
+ # been exported from the same project but in a separate export set.
104
+
105
+ # Commands beyond this point should not need to know the version.
106
+ set(CMAKE_IMPORT_FILE_VERSION)
107
+ cmake_policy(POP)
@@ -0,0 +1,108 @@
1
+ Metadata-Version: 2.4
2
+ Name: gstaichi
3
+ Version: 0.1.18.dev1
4
+ Summary: The Taichi Programming Language
5
+ Home-page: https://github.com/Genesis-Embedded-AI/taichi
6
+ Author: Taichi developers
7
+ License: Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)
8
+ Keywords: graphics,simulation
9
+ Classifier: Development Status :: 5 - Production/Stable
10
+ Classifier: Topic :: Software Development :: Compilers
11
+ Classifier: Topic :: Multimedia :: Graphics
12
+ Classifier: Topic :: Games/Entertainment :: Simulation
13
+ Classifier: Intended Audience :: Science/Research
14
+ Classifier: Intended Audience :: Developers
15
+ Classifier: License :: OSI Approved :: Apache Software License
16
+ Classifier: Programming Language :: Python :: 3.10
17
+ Classifier: Programming Language :: Python :: 3.11
18
+ Classifier: Programming Language :: Python :: 3.12
19
+ Classifier: Programming Language :: Python :: 3.13
20
+ Requires-Python: >=3.10,<4.0
21
+ Description-Content-Type: text/markdown; charset=UTF-8
22
+ License-File: LICENSE
23
+ Requires-Dist: numpy
24
+ Requires-Dist: colorama
25
+ Requires-Dist: dill
26
+ Requires-Dist: rich
27
+ Requires-Dist: setuptools>=68.0.0
28
+ Requires-Dist: cffi>=1.16.0
29
+ Provides-Extra: docs
30
+ Requires-Dist: sphinx; extra == "docs"
31
+ Requires-Dist: sphinx-copybutton; extra == "docs"
32
+ Requires-Dist: myst_parser; extra == "docs"
33
+ Requires-Dist: sphinx-subfigure; extra == "docs"
34
+ Requires-Dist: sphinxcontrib-video; extra == "docs"
35
+ Requires-Dist: sphinx-togglebutton; extra == "docs"
36
+ Requires-Dist: sphinx-design; extra == "docs"
37
+ Requires-Dist: pydata-sphinx-theme; extra == "docs"
38
+ Requires-Dist: sphinx-autoapi; extra == "docs"
39
+ Dynamic: author
40
+ Dynamic: classifier
41
+ Dynamic: home-page
42
+ Dynamic: keywords
43
+ Dynamic: license
44
+ Dynamic: license-file
45
+ Dynamic: provides-extra
46
+ Dynamic: requires-dist
47
+ Dynamic: requires-python
48
+ Dynamic: summary
49
+
50
+ # GS-Taichi
51
+
52
+ [Taichi](https://github.com/taichi-dev/taichi) was forked in June 2025. This repository (or gs-taichi) is now a fully independent project with no intention of maintaining backward compatibility with the original taichi. Whilst the repo largely resembles upstream for now, we have made the following changes:
53
+ - revamped continuous integration, to run using recent python versions (up to 3.13), recent mac os x versions (up to 15), and to run reliably (at least 95% of runs with correct code succeed)
54
+ - added dataclasses.dataclass structs:
55
+ - work with both ndarrays and fields (cf ti.struct (field only), ti.dataclass (field only), ti.data_oriented (field only), argpack (ndarray only))
56
+ - can be passed into child `ti.func`tions (cf argpack)
57
+ - does not affect kernel runtime speed (kernels see only the underlying arrays, no indirection is added within the kernel layer)
58
+ - removed GUI/GGUI
59
+ - upgraded supported OS and Python versions (eg added support for Python 3.13)
60
+
61
+ Planned features:
62
+ - reduce warm cache launch latency
63
+ - (maybe) add launch args caching, to reduce launch latency
64
+ - make dataclasses.dataclass nestable
65
+
66
+ Planned pruning:
67
+ - remove argpack
68
+ - remove ti CLI
69
+ - remove OpenGL (please use Vulkan)
70
+ - remove mobile device support (Android etc)
71
+ - remove support for NVidia GPUs earlier than sm_60/Pascal
72
+
73
+ # What is gs-taichi?
74
+
75
+ GS-Taichi is a high performance multi-platform compiler, targeted at physics simulations. It compiles Python code into parallelizable kernels that can run on:
76
+ - NVidia GPUs, using CUDA
77
+ - Vulkan-compatible GPUs, using SPIR-V
78
+ - Mac Metal GPUs
79
+ - x86 and arm64 CPUs
80
+
81
+ GS-Taichi supports automatic differentiation. GS-Taichi lets you build fully fused GPU kernels, using Python.
82
+
83
+ [Genesis simulator](https://genesis-world.readthedocs.io/en/latest/)'s best-in-class performance can be largely attributed to Taichi, its underlying GPU acceleration framework for Python. Given how critical is this component, we decided to fork Taichi and build our own very framework from there, so that from now on, we are free to drive its development in the direction that best supports the continuous improvement of Genesis simulator.
84
+
85
+ # Installation
86
+ ## Prerequisites
87
+ - Python 3.10-3.13
88
+ - Mac OS 14, 15, Windows, or Ubuntu 22.04-24.04 or compatible
89
+
90
+ ## Procedure
91
+ ```
92
+ pip install gs-taichi
93
+ ```
94
+
95
+ (For how to build from source, see our CI build scripts, e.g. [linux build scripts](.github/workflows/scripts_new/linux_x86/) )
96
+
97
+ # Documentation
98
+
99
+ - [docs](docs/lang/articles)
100
+ - [API reference](https://ideal-adventure-2n6lpyw.pages.github.io/taichi.html)
101
+
102
+ # Something is broken!
103
+
104
+ - [Create an issue](https://github.com/Genesis-Embodied-AI/taichi/issues/new/choose)
105
+
106
+ # Acknowledgements
107
+
108
+ - The original [Taichi](https://github.com/taichi-dev/taichi) was developed with love by many contributors over many years. For the full list of contributors and credits, see [Original taichi contributors](https://github.com/taichi-dev/taichi?tab=readme-ov-file#contributing)
@@ -0,0 +1,198 @@
1
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools/cmake/SPIRV-ToolsConfig.cmake,sha256=jFprL3mwRRYJ0eh52yZqmUAWD9cA7xA7hhstBQU_scY,230
2
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget-release.cmake,sha256=X438aOEvZsAeo6Suk2LfStdal8R5m3UyfUPCg51DXGM,1477
3
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget.cmake,sha256=mriRCzvolwIXT55WDaD2ouu6AQvVHXQbRdJPmj0ZtSg,4468
4
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffConfig.cmake,sha256=3S1hOLuDTsAwTH-F_Xn9iBdCjjOH6Kx3EjNhDXBVShw,280
5
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets-release.cmake,sha256=6fnDD1oaU-DEP4JIq75wotq4OSPW63pe5jEcTVwEtyo,890
6
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets.cmake,sha256=U1RmMclqSVR8vePS98vpT2RqItqnivv5tXbfM58i9V0,5068
7
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkConfig.cmake,sha256=HgRoCSWZQhGnNEs938xBFDSdxK6crL6VtbrQ9-DqcMY,280
8
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets-release.cmake,sha256=cqDRYOLX02s-xo8EKyuGQwYX6uNa2Lxb363OP0tUB54,890
9
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets.cmake,sha256=nlQJ33ZSrKM5w-xi7lYlopolM5lwcX4Yyqrytlbvj5c,5028
10
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintConfig.cmake,sha256=E0o9wMS7mOV58CacqGpW5EOyG70WrdBKexx1AFlCyiQ,280
11
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets-release.cmake,sha256=3QC3rN6BhZ4n5-WrR9pmu4AfH1QKFIGCCXZjPA3A8c0,890
12
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets.cmake,sha256=X2bmbqKDvgHDUaYEjssse8Rgk_ZsETuMMS3EaX2gmo0,5068
13
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optConfig.cmake,sha256=CYygoz_0kxDnsT7_NbByRCuviPMS0TwwK86Qwc6tnnw,275
14
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets-release.cmake,sha256=vSAY69UsznqGYYqEUdL255U2B3LUZl9PSexaQwmPECw,883
15
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets.cmake,sha256=5Erfqk7DZeEa2sveBBlRw8QwBrdBZ55GDdo14DdNxpI,5029
16
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceConfig.cmake,sha256=i2lpvjP36I_6iEh5mObgdPMz5UOHQ4wIIOcbP5NIjTk,290
17
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget-release.cmake,sha256=D2c9eUqoh3H-ihr_1up2Ppo_2nSLoNyxmo9eWUV_pGE,904
18
+ gstaichi-0.1.18.dev1.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget.cmake,sha256=_Miasn_g_L8dG2fTiigOC-rrDc3aKgHy3IfMi7DB2b4,5077
19
+ gstaichi-0.1.18.dev1.data/data/bin/SPIRV-Tools-shared.dll,sha256=XgHvP4EvlUiMIluZijsZm4RNolWz2BTlqMQz4IMMc-s,2042368
20
+ gstaichi-0.1.18.dev1.data/data/include/GLFW/glfw3.h,sha256=QIB4KnbXSK4tfZ99LqTfJdn-ObkYf5vp70ee9uBPzFQ,240786
21
+ gstaichi-0.1.18.dev1.data/data/include/GLFW/glfw3native.h,sha256=3hGJGACURjjhav5xcOb9F1fW76uPjfAzoXZlK3UUxAc,19397
22
+ gstaichi-0.1.18.dev1.data/data/include/spirv-tools/instrument.hpp,sha256=92ifeZiADg0tWjsnYsVqQoH5KbIxxnz3AK-S9r0ln2A,11917
23
+ gstaichi-0.1.18.dev1.data/data/include/spirv-tools/libspirv.h,sha256=3rvQUbgMs9h3jxnC4OLRyPN-lWvqSjHgy7tS3ZkOYvI,42688
24
+ gstaichi-0.1.18.dev1.data/data/include/spirv-tools/libspirv.hpp,sha256=TMJs7spPKjYx0FlnorbOSany4R1k2bk8B4wOi_vttic,15012
25
+ gstaichi-0.1.18.dev1.data/data/include/spirv-tools/linker.hpp,sha256=SKevy72q3RRFOdqQotIb08h9NNMfAnNMKmSF7B20d0A,3691
26
+ gstaichi-0.1.18.dev1.data/data/include/spirv-tools/optimizer.hpp,sha256=5MPYUrk-hRM6tbFkCr2IUKsukO8eAPjA9_DE-ib4Lnk,50060
27
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-diff.lib,sha256=L0SsjCw8g7b_CQsd2LpWGVN5Dv4kUlPs_YhPZXrgTXo,4766344
28
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-link.lib,sha256=c2k7bEUmEheWx_mvxxpnM1ZDtl1pADMnYr_3T8YEjmU,4074904
29
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-lint.lib,sha256=3UtaiczLQn8h6haInmP_eUPDJDtD3DNw7SByop3ZmC8,4723542
30
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-opt.lib,sha256=YjungnaQhVB8q47FhpNsbijLpo7Nah8X7dJd4x0mtzg,153197732
31
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-reduce.lib,sha256=QnFgSCYvxgfNni2e1AFB7ucJsHdpUUizSjPEt0cqi6U,14806994
32
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools-shared.lib,sha256=QL8TrGr68p9EStaJU5UpACMob2FOctYrokhkRyZACeM,16470
33
+ gstaichi-0.1.18.dev1.data/data/lib/SPIRV-Tools.lib,sha256=tvXrb4Jxji82ScqSU5zG2MHMKBwHNUu0MOKVG5faMfc,37167956
34
+ gstaichi-0.1.18.dev1.data/data/lib/glfw3.lib,sha256=JiDYXIdpDoiXNOkxDMA_ubpKpNeJBOmjS0vJO3rm598,687808
35
+ gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3Config.cmake,sha256=YZVL9F2A70B51dNW0W--Scv9ga3cbyZYjlsaDCs-zHk,118
36
+ gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake,sha256=mttbBnVYyxo57F-pEE8g4-E62lcH8xYujvlmTQyD7ug,2827
37
+ gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake,sha256=VlH9iN0TgA6MlsPimvnOgTG0gxzsaoGj-RmWEqd9QHA,806
38
+ gstaichi-0.1.18.dev1.data/data/lib/cmake/glfw3/glfw3Targets.cmake,sha256=D3NWABsZAPn6vu3kAtXXUo3Lqql5NiGhSHVqtwg3UOw,4242
39
+ gstaichi-0.1.18.dev1.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
40
+ taichi/CHANGELOG.md,sha256=V5EsakUW0wVDtu1gveObSBx89c6iqdIba3USOcOOFis,640
41
+ taichi/__init__.py,sha256=ds06z5hmNrLxzlXA83N95K1m6hdJD6mcxtGYJq9wjfQ,1154
42
+ taichi/__main__.py,sha256=OW87w7o1iQm9wxO2L280yT9owYxXBxpw9uFle4xNLg4,53
43
+ taichi/_funcs.py,sha256=SQHbz7j-Y7O_awCCe8I_molUbF9eVLGQeq42GFOPuds,23927
44
+ taichi/_kernels.py,sha256=dJfBn2LyQKgfdqEHRS2vNwS48mhJAHzXInYAsPdDszo,14637
45
+ taichi/_logging.py,sha256=FZLMMhwfZjK_pbbS3GZBbbcfOrEnb_YdqxPhFCzR3DI,3811
46
+ taichi/_main.py,sha256=mnoYcWDi7zQrw8wJtztHdKVnwCPPAB7kJXQnAcrBeNY,18695
47
+ taichi/_version.py,sha256=f64zuQzI-ahIV8wtJA4JtNSBRE79IFyuFI-Wvhu91h4,29
48
+ taichi/_version_check.py,sha256=Gir0I8F0v5AFWg_PDrh4VJGNAK8g-IwQODdLMExIs9s,3560
49
+ taichi/experimental.py,sha256=YGuFkRYlMXCWNN3eIHkNa0r2acTVTgYvsJMVLFCU-8U,357
50
+ taichi/_lib/__init__.py,sha256=o1EVkYayGACgdJu7JpxTZZfz8E8WlbOpLnEgWLh4yKY,72
51
+ taichi/_lib/utils.py,sha256=kquAGVrWHK7P4ClY5AUT9rNegU6ahqTPq1IJWZmjgQo,8058
52
+ taichi/_lib/c_api/bin/taichi_c_api.dll,sha256=tMcNzwbsuwgN_KJdnL0D5aMs5QIWjTS9EAnY6bEW6SU,52329472
53
+ taichi/_lib/c_api/include/taichi/taichi.h,sha256=CWKE41rZTZrfd4mIKL8MfY3D705JChQz9hZ5XrktYmk,515
54
+ taichi/_lib/c_api/include/taichi/taichi_core.h,sha256=d_M6zX2YUWKvu4XzVBKQtdRg1lZ1tXTw37lq1AGmH-w,39906
55
+ taichi/_lib/c_api/include/taichi/taichi_cpu.h,sha256=2nAPbUwnxlw0VulLnYAoKvirVuzOEKqtErbi9TKSfDI,776
56
+ taichi/_lib/c_api/include/taichi/taichi_cuda.h,sha256=PqbTQ6HqfvVizP_rOjugddDrDfWecK5YoJQRrbijBIo,1029
57
+ taichi/_lib/c_api/include/taichi/taichi_platform.h,sha256=k1TWqLHe9RGKLqUvv3Zx9YZq3I9wDg07opxbs2EA3NM,1351
58
+ taichi/_lib/c_api/include/taichi/taichi_unity.h,sha256=kmTCD28keOLJxfWPU7nmJlTtRW5yeBJ0VviZKqTRiV4,2420
59
+ taichi/_lib/c_api/include/taichi/taichi_vulkan.h,sha256=iCoRIOFkul0gGR3gSgxNQuF9sW9i2gVK3ZXRrq9kL-0,5464
60
+ taichi/_lib/c_api/include/taichi/cpp/taichi.hpp,sha256=-_ypTHvNb5_EwQuvAv_9JUBec3GsO6ConNsNL6GSAf4,41667
61
+ taichi/_lib/c_api/lib/taichi_c_api.lib,sha256=_iGS1R49JrJ2rX4kYocIoWOI780favrxpF7qb-0mv1I,400768
62
+ taichi/_lib/c_api/runtime/runtime_cuda.bc,sha256=gllpnX4cRKiHROmLK9LqV6xFcPKkNYJ7V4p_nIqO4ns,155416
63
+ taichi/_lib/c_api/runtime/runtime_x64.bc,sha256=aWHckMY9dS3nY5hdk22_S5zFlYOAW_h5AejnIzyzmSM,140016
64
+ taichi/_lib/c_api/runtime/slim_libdevice.10.bc,sha256=9dlDFXMV4uIAIKy-1yU7ppNV_oMdIHDR9YqOT_7sfaw,171892
65
+ taichi/_lib/c_api/taichi/lib/cmake/taichi/TaichiConfig.cmake,sha256=EsFymp0dkoCf7PcF8UQLJZxhTBnBTxcLQTzagmRKYLI,1019
66
+ taichi/_lib/c_api/taichi/lib/cmake/taichi/TaichiConfigVersion.cmake,sha256=o42wX47uZzaMCNUDvNz2mYRQZQjp3T0F98rAGzUDEVA,2830
67
+ taichi/_lib/c_api/taichi/lib/cmake/taichi/TaichiTargets.cmake,sha256=IPEleeqobY76p1XsQ45tKquzOdL9Tb47Xr9mdQ6vXao,4946
68
+ taichi/_lib/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
69
+ taichi/_lib/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
70
+ taichi/_lib/core/taichi_python.cp310-win_amd64.pyd,sha256=ur9chprcN5_F-XL2rWvN6V4we2kgvVG_QJnxzH2NoTo,82078208
71
+ taichi/_lib/core/taichi_python.pyi,sha256=OdYHKVCQnZYfb8bucq-kYDkslwFrlPH6wV7mDgsM8lM,117007
72
+ taichi/_lib/runtime/runtime_cuda.bc,sha256=gllpnX4cRKiHROmLK9LqV6xFcPKkNYJ7V4p_nIqO4ns,155416
73
+ taichi/_lib/runtime/runtime_x64.bc,sha256=aWHckMY9dS3nY5hdk22_S5zFlYOAW_h5AejnIzyzmSM,140016
74
+ taichi/_lib/runtime/slim_libdevice.10.bc,sha256=9dlDFXMV4uIAIKy-1yU7ppNV_oMdIHDR9YqOT_7sfaw,171892
75
+ taichi/_snode/__init__.py,sha256=zirJ51sX2Ak1XtfukNCUz1V11B7ZiIEP4pKDtQDpmfU,105
76
+ taichi/_snode/fields_builder.py,sha256=rpqWryEJNOaaj_Q4Q1GRqFa6y6FRH_pzH_sO9M4aQZg,7057
77
+ taichi/_snode/snode_tree.py,sha256=g_gjV9Wj1JcJLSTtJEaDi5PUc5fQ1o8SQNxWES3L4pg,1219
78
+ taichi/_ti_module/__init__.py,sha256=kwm1DfS2Wap6ydTK7F_W1B_384bHy_Qp6eQMls-9F8E,62
79
+ taichi/_ti_module/cppgen.py,sha256=IoIadGdOJwfeOXva41lAwOpjfOlUFmsUt2a4_JUK0Ow,9947
80
+ taichi/_ti_module/module.py,sha256=PFdFpcauHwUvqEsWylKTQWUMKetiCVw5k1tF2M0ffK0,5434
81
+ taichi/ad/__init__.py,sha256=eoGyfA5Trd42B8cnhFdKUqygZCqwvOj1ANfMVSkcepY,47
82
+ taichi/ad/_ad.py,sha256=HE4TURN9FeGildwsoGleMpLfTHyLx-zEgfRI-1WjYRM,19688
83
+ taichi/algorithms/__init__.py,sha256=ueWUSLoLUkh4k-deNS3dxRi9QYNIrtwxNveYb5vaJkE,46
84
+ taichi/algorithms/_algorithms.py,sha256=f0i0KtxyV0BLj91_kpzcMDhkzpdcgRM6AtQ78Dafqlo,3808
85
+ taichi/aot/__init__.py,sha256=rEzvH3dXhew6WgLXYhEVokO1Up8PE9-rvRJJuNq0yGM,368
86
+ taichi/aot/_export.py,sha256=fPgZh_UZC5TqV9BOf96wupHvU8oWOC-7g4w6MiQ2Igo,703
87
+ taichi/aot/module.py,sha256=9kiJLMzvdzaDAlz3HX9aaCrwwWuZTfuEp4a2Ozgqczo,8624
88
+ taichi/aot/utils.py,sha256=nuLa4BV_x8GDFiu_4ZuOQ550U8qMQE1NHkNWyBrKXUQ,6290
89
+ taichi/aot/conventions/__init__.py,sha256=feqlMJYS17lmEwJthiegrbXxw6Q_LK6PM4Gge_muT1Y,68
90
+ taichi/aot/conventions/gfxruntime140/__init__.py,sha256=86z2sf2GeV9xKkd7llwLGDiJSIcpBedXxNgsm6QqEBw,1402
91
+ taichi/aot/conventions/gfxruntime140/dr.py,sha256=_vBhJoleuIZ3hZnXwMaBDb7btFIVo2PYxsifu_X3nmo,8434
92
+ taichi/aot/conventions/gfxruntime140/sr.py,sha256=o1yF6Sq3ekDoXCCLe4KgryrGwDh1HSOD_4uiF4HBPIE,18723
93
+ taichi/assets/.git,sha256=_sepXJOH-4A9o4jtu-46jG2P6XHHbsvGW3642aKNQBc,43
94
+ taichi/assets/Go-Regular.ttf,sha256=S7gpWTE2QWxqOezcRUguBS91rDdOZFm5r2jU-6J5OWw,134988
95
+ taichi/assets/static/imgs/ti_gallery.png,sha256=rOeh8JlUXb-ZdkTaei3cVyJXZBWOqcJBLdndAORUdtU,263871
96
+ taichi/examples/minimal.py,sha256=uRRu3SEnc7HSWWO7XPfDzSLMbjHiEhK1YQl49NrAkpY,631
97
+ taichi/graph/__init__.py,sha256=PL6EjlToI1UTkjZi7RmyTFRn9Gqmw8waUR1IbKMl8hw,41
98
+ taichi/graph/_graph.py,sha256=JkjeQKhPZHgfABHZoVYdP0Gnk3RV-0O7LauumbK2XiQ,10284
99
+ taichi/lang/__init__.py,sha256=yJCUgSFt_xGOmGw68aeWINqC4Oklza7agRJyoqh-Les,1270
100
+ taichi/lang/_ndarray.py,sha256=XHzvtbEVm0fg_ysHGhRLfKdHjT1CButzLYlVEgtP3a0,10883
101
+ taichi/lang/_ndrange.py,sha256=z8i2qmw4DDDQks1CMZ0Z0Ppqca469ZNmlLPEJZKq5wU,5901
102
+ taichi/lang/_texture.py,sha256=GNlfU6WHQUmgbuCED8syH-gRF__1Fu0yMrE0a0Xmfmc,6744
103
+ taichi/lang/_wrap_inspect.py,sha256=pJgm3EacivSeJtER5ouxOtlcjFdHILezjurzTautphw,7159
104
+ taichi/lang/any_array.py,sha256=ev1BE85rUPFdUF2UCwCRLQUh8fVw94IqU3pUSNBV_MA,3359
105
+ taichi/lang/argpack.py,sha256=wEC0_2S0EdmojDlV4wXnh7VJGOBXBPVA4OEbRt0hmfw,17129
106
+ taichi/lang/common_ops.py,sha256=IfsgZGr9q7plZoI1aXna4i9KOEbBWIkT_35pDm60bow,8740
107
+ taichi/lang/exception.py,sha256=oPMStq5znpMQKMlxKbecs_rlo1CLBY-uK1rEZy2L9sg,2101
108
+ taichi/lang/expr.py,sha256=psSgwptYYulfd3TJ3zbfTbOhOwYWBOM6hAlIKGHAY10,6534
109
+ taichi/lang/field.py,sha256=Y7vSm4BuraKcMRN-Hin8ZtCywFvS4Vv8XxrRXVbSWVM,14772
110
+ taichi/lang/impl.py,sha256=sPAJy6B6U6dBO0fPr9YmQEVxpSFEqfpMvBL5L4HHt4Q,42619
111
+ taichi/lang/kernel_arguments.py,sha256=nMDOPHLcgciL9VFf1E7w5zT8kev5UvfS88-ixM0NiQs,6532
112
+ taichi/lang/kernel_impl.py,sha256=mTT9zW326EKgNHw6-DOc29NJ0pdzkEGyBrs_93HH5rc,63431
113
+ taichi/lang/matrix.py,sha256=g7GA0tKLz4HsLE1EBAF-6xpm36rsSOCDBo-k3jNbjyQ,65349
114
+ taichi/lang/matrix_ops.py,sha256=JAP1A7GSy0mZJgjHDEEvuqvxdKFZpC0VMM4W84N24m8,10387
115
+ taichi/lang/matrix_ops_utils.py,sha256=XO2IdIjL5NfCObtW0XvwGvTm8BxSctOMPVrybAY_g7w,5425
116
+ taichi/lang/mesh.py,sha256=ZKugH3sER2wTfBgz0y1RyJDqBIonK3UhpY_crOXkUj8,27712
117
+ taichi/lang/misc.py,sha256=LbBvY7wJxU1bzZX7doP2cQ7hiEoDoydbskHumrOcVRQ,24694
118
+ taichi/lang/ops.py,sha256=aBjLaWr2cEog3Ktrl75mdGIuzCQCm_g2zE2oH0y4o7c,45433
119
+ taichi/lang/runtime_ops.py,sha256=Cg9njEcScidFoMBajn76evBojZlHqrn2av6oZzUaBVQ,233
120
+ taichi/lang/shell.py,sha256=Wzz9vPF0_fuLbto1aTrQVBB9-V0kNRtQD9MdwsexUZE,1089
121
+ taichi/lang/snode.py,sha256=tth7w-LoM_bbB4JmhvQN5wBjYg2-dfARnAof91n7M80,17545
122
+ taichi/lang/source_builder.py,sha256=Pdtw8D95eUukODNBVHKoTGsdgLY4Z7Pn-BUCqor39U8,5931
123
+ taichi/lang/struct.py,sha256=e-lf40GTeaLQuZQfdpXLnN4LrAGNIM7B0cQZdK0gQJ0,31956
124
+ taichi/lang/util.py,sha256=n5NdPwiq4ZMTi7BUJnq8XoXDzCXhi-joio5mqcO-k9I,9445
125
+ taichi/lang/ast/__init__.py,sha256=-kImVu-q5EuuZCJsuFMVKnlZBR3P_EVo0wHsVuTXql0,210
126
+ taichi/lang/ast/ast_transformer.py,sha256=x3pWj5SOOWSB0frpjns5BONIM6SVtXwLpKChI7RKo00,82762
127
+ taichi/lang/ast/ast_transformer_utils.py,sha256=BHRJ3yjddSZQSpuahyddOOVLozm2-iIr-G6BJIuP6hY,11045
128
+ taichi/lang/ast/checkers.py,sha256=jUVOWMg9IfQm4I71urk98ZjhxnGSd8c617In1CmA5aI,3894
129
+ taichi/lang/ast/symbol_resolver.py,sha256=BtTp-U36tLZwbZVHI7Cq5-6GmrnaWdqC6S7SiWD4t4Q,1829
130
+ taichi/lang/ast/transform.py,sha256=3utJuqeOxyat31oYr82s8q-TZVY8W74o4XuijwqlIr4,271
131
+ taichi/lang/simt/__init__.py,sha256=_TRpvOwvFJXUV4uxPK1EFJ9aSUb_UyJLQ15QXS6fgfc,127
132
+ taichi/lang/simt/block.py,sha256=kzwMYXPEpnMcslYYrmM62UyuLcrer19SzC7jLmI3c0g,3771
133
+ taichi/lang/simt/grid.py,sha256=VQewkvMKSLpfhQocBGACj8lz_DOBVUSL56T0T-aKQUg,145
134
+ taichi/lang/simt/subgroup.py,sha256=5UkEvtn79iTazsPcEpCllBZjXfl9NpbuF5U-74xSvwE,3970
135
+ taichi/lang/simt/warp.py,sha256=TfWfRuEiAqjcSGFTDEpLHl0G-soxMFKdmHORFaydpyg,3181
136
+ taichi/linalg/__init__.py,sha256=eEN3zhfgDpDP76Cyu-3WxwiYFdHWTulLscy5k99tZHk,265
137
+ taichi/linalg/matrixfree_cg.py,sha256=ubnKakzUOC5lIPy-g1bXy05arUFumHuil_iwtDqEcJg,10616
138
+ taichi/linalg/sparse_cg.py,sha256=BP0SBYYSg-btOmre74i2uZjbEc8kVeMZkSEdvd4WVNg,2595
139
+ taichi/linalg/sparse_matrix.py,sha256=7uX-S6XmqPBK7eZVXuh-qvDMNPWPWXdMCb1PaXDvkaE,11226
140
+ taichi/linalg/sparse_solver.py,sha256=0G-vWNgzgSc7edib_MSSdnXHn3hHNadWtiAo1f0y5ao,5001
141
+ taichi/math/__init__.py,sha256=1rNlw--t-pfZkwX0WjsFruIedUo-y7Lg_dt-h7lmIBg,212
142
+ taichi/math/_complex.py,sha256=VD57m38vhWnSLSwoCmEmCGI7YTGm6Efk_wiz2KwQCh8,5143
143
+ taichi/math/mathimpl.py,sha256=WEKYH0DN4kPoxfdeTTst9yjc5rsBd_4OUdi0xKyGtpw,22467
144
+ taichi/profiler/__init__.py,sha256=GPr6P64_iv8NiktFAimxJZkruII2c94Op1ZivsN3LVA,205
145
+ taichi/profiler/kernel_metrics.py,sha256=cUIcXRlpOgdgyQorNJCaXPqlfP-wG_xK7LWwQLAy-tE,7857
146
+ taichi/profiler/kernel_profiler.py,sha256=ktwl4BCBTG7rZ6oZbMdJyGJJgx-wgIzF1rLj6Q8Hdog,23086
147
+ taichi/profiler/memory_profiler.py,sha256=A5oJRt6WU8Ie_beqtUF7jPSeCefyZnsxDClegvuxIYs,356
148
+ taichi/profiler/scoped_profiler.py,sha256=B-APMpNpcb-qzkSdTf-jDG9PeHsSPgd2qpqZKn6zTaQ,1003
149
+ taichi/shaders/Circles_vk.frag,sha256=C-Gunizzb5yp263wFJo8sNXm0VFN5qDKWdcI2vtX4qY,542
150
+ taichi/shaders/Circles_vk.vert,sha256=DHZQ31tJFwQsRlX5_9hOeVWmT_0ZgRdWVziQOt_Agwc,1118
151
+ taichi/shaders/Circles_vk_frag.spv,sha256=qI6bTUsPGf08FaOTqHdfi2u5RdZEldvJma7fW7VdEX8,1332
152
+ taichi/shaders/Circles_vk_vert.spv,sha256=0nDQgBjI75ANa7eNZoDojIyOvWhNQIs9mZpYDpME-tE,3484
153
+ taichi/shaders/Lines_vk.frag,sha256=Hgu8YEa6lg13Z8QR-f4ytHhyQG76NP5wo31VOa5Fn4I,148
154
+ taichi/shaders/Lines_vk.vert,sha256=VDa2kKAtrNliKqeVpfG27YwLHcJL-sagLFpf8TH7z74,316
155
+ taichi/shaders/Lines_vk_frag.spv,sha256=bNybJN5kDtKaP-IAgqHI6rRFMP2cAVUpQdvkWQBvDDk,568
156
+ taichi/shaders/Lines_vk_vert.spv,sha256=urES2qDkY91hs8F5lvJilL7mLZJngu6a4Bx66FFu4FY,1308
157
+ taichi/shaders/Mesh_vk.frag,sha256=y0elUiH0ztClM8NFIChhQFcj0tohe-711QUCW0ycbBI,1550
158
+ taichi/shaders/Mesh_vk.vert,sha256=qgTkAxsY-dPDyyXo8GT2n7ars09bUZCaW-05AO-me3A,1680
159
+ taichi/shaders/Mesh_vk_frag.spv,sha256=APc6Sb1tz2uNRQSqvwwrWB6W_jk0s3EMRDsEIGKMBpM,3952
160
+ taichi/shaders/Mesh_vk_vert.spv,sha256=P-2FSwJaPObW5HSvQXbrRCDLZurYxr3zbhsH1YUasG8,4396
161
+ taichi/shaders/Particles_vk.frag,sha256=6OpkFgANuX4_93s0hCeUZY5xNPSaoRjcmoFRL-LunAU,2316
162
+ taichi/shaders/Particles_vk.vert,sha256=cxKlHDPwX35oxrx8GPJp1dryUk5RjP3WBQ79g3WQ2d8,1849
163
+ taichi/shaders/Particles_vk_frag.spv,sha256=soI-L_l6Amd0UlokxTPZ2JBaZdaeO--BA1AlDlgIRA8,6216
164
+ taichi/shaders/Particles_vk_vert.spv,sha256=815FN2TpmimCbzxtQGHQNnUCLTBOTwo173xJEG_y6Tg,4624
165
+ taichi/shaders/SceneLines2quad_vk_comp.spv,sha256=zSCZvr0bsW-KtznbYO6EwreiDP5Ua-NamvUkBTS18so,11344
166
+ taichi/shaders/SceneLines_vk.frag,sha256=Hgu8YEa6lg13Z8QR-f4ytHhyQG76NP5wo31VOa5Fn4I,148
167
+ taichi/shaders/SceneLines_vk.vert,sha256=8CfvgtOSiG9yu9GyRr_DxyW1p8s5vUQ9PwEwk7ZOO5Y,259
168
+ taichi/shaders/SceneLines_vk_frag.spv,sha256=bNybJN5kDtKaP-IAgqHI6rRFMP2cAVUpQdvkWQBvDDk,568
169
+ taichi/shaders/SceneLines_vk_vert.spv,sha256=8yg5hXGslcpvBQZvxG7seXCW4208nHcamgIk9W12xMw,1092
170
+ taichi/shaders/SetImage_vk.frag,sha256=7AMlfh6JTVRQA5wMjk_T2hkb_WIDNtuS0wQgp_eRCxo,534
171
+ taichi/shaders/SetImage_vk.vert,sha256=yc-Q_CUxujZ1UGTH5xaUv3sLoEKdeLcMgOyq8Kg8H1I,394
172
+ taichi/shaders/SetImage_vk_frag.spv,sha256=IcFSSJPgFUXFbx07xJ8qI3d-FyCtT57g38iZ-TYZQkM,1712
173
+ taichi/shaders/SetImage_vk_vert.spv,sha256=qWaRg8caSTrN11HqVgxx_J84zBN0haeHx-7xsw303qk,1244
174
+ taichi/shaders/Triangles_vk.frag,sha256=zQrAXml1LJIdIEx28Wvs4Gymozw69ljqU5gldupIb5A,317
175
+ taichi/shaders/Triangles_vk.vert,sha256=s8FhjV9oJvdxPtbFCNSUPC5mRLoNz_w-WyjlOexjUO4,688
176
+ taichi/shaders/Triangles_vk_frag.spv,sha256=wDE2jVYHZfcVMwZlweFCHhxOxXTynBPL5YJ5z2eh9Dc,840
177
+ taichi/shaders/Triangles_vk_vert.spv,sha256=5BY7jgsDc1_X_BwWWXu5nhpXySVOD16ziplFEVR4LxY,1976
178
+ taichi/shaders/lines2quad_vk_comp.spv,sha256=p1LYegTuQZhD7dFmHoU0rc8lOg-TAka57J6uZZFrwrc,9192
179
+ taichi/sparse/__init__.py,sha256=7VN50pijO_9Z498YrtApTIMR6FjZ_LQPlftUBajudMQ,47
180
+ taichi/sparse/_sparse_grid.py,sha256=fO6rEKppwIw7EIxaVk16jOccvVvLF1hdmvL3pC28OeU,2495
181
+ taichi/tools/__init__.py,sha256=nBEJiF_q10AKha60CQZLBdK9ZHtHJzGIRT_J92c3JTU,321
182
+ taichi/tools/diagnose.py,sha256=qJHqqSYHnMCe0AdZLlsdRtBI_9Hbw1YrJ2jGbXlQ-bU,3821
183
+ taichi/tools/np2ply.py,sha256=2hJKNZvpoHCh8PBKXWBjkBCUu_q1U6L4eAmKdRBXUbg,15635
184
+ taichi/tools/vtk.py,sha256=ziOsTJI4AaDy1OxNxsU2pi98J3_QXqkEJwTwMRsYJoM,1070
185
+ taichi/types/__init__.py,sha256=qfvF6tSryrMEmUfuf7bogoh3ww1lTTDXOHss4rS4IqI,599
186
+ taichi/types/annotations.py,sha256=adYg2c0Cs0dB69btIk-LgpKO_ClIQN1YVm-q6xzbMKk,1037
187
+ taichi/types/compound_types.py,sha256=7zks4FL_y4d7o0EtH_bcjjXtt2ud-ApfC2DxMRcT67E,2463
188
+ taichi/types/enums.py,sha256=G_WnExbvrTUtAa4Bxe6IfWvrSqLqi3dieKOdPuz84nY,2097
189
+ taichi/types/ndarray_type.py,sha256=cUHBWuz7Hk2WGsVzPKAm3y6frczd1uPBLxqxuPz97mY,6953
190
+ taichi/types/primitive_types.py,sha256=OKFx9L-TI0oJYb1YpQ2VFa1bioiCzQ7PoYsq3QC1jLI,4141
191
+ taichi/types/quant.py,sha256=4Bha6D_9LFon0Gps9n3Va5h0KCrSTV8ZvuiuDkUVS7A,3036
192
+ taichi/types/texture_type.py,sha256=OkhwMtRmCcbFX7UizG36X309Jnjn4JKlnBP6RRoX8V0,2432
193
+ taichi/types/utils.py,sha256=Cqlj_HQM3rah3lNzLhU2PSmVwknxILyamEnQszhZZ6A,292
194
+ gstaichi-0.1.18.dev1.dist-info/METADATA,sha256=FYKa05GTZChEWfyVdvUy9H_hpZNBLEumBYuK0mSlxNw,4868
195
+ gstaichi-0.1.18.dev1.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
196
+ gstaichi-0.1.18.dev1.dist-info/entry_points.txt,sha256=aCsfvbmeUJTvIaaS7AlWore9Kk9y972OriDvM8vj11w,41
197
+ gstaichi-0.1.18.dev1.dist-info/top_level.txt,sha256=M4SUucyO8TtnY975SVXLwvzaXv4bMRa1VYX32gVzUvU,7
198
+ gstaichi-0.1.18.dev1.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: cp310-cp310-win_amd64
5
+
@@ -0,0 +1,2 @@
1
+ [console_scripts]
2
+ ti = taichi._main:main