gstaichi 0.0.0__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 (154) hide show
  1. gstaichi/CHANGELOG.md +4 -0
  2. gstaichi/__init__.py +51 -0
  3. gstaichi/_funcs.py +706 -0
  4. gstaichi/_kernels.py +420 -0
  5. gstaichi/_lib/__init__.py +5 -0
  6. gstaichi/_lib/core/__init__.py +0 -0
  7. gstaichi/_lib/core/gstaichi_python.cp310-win_amd64.pyd +0 -0
  8. gstaichi/_lib/core/gstaichi_python.pyi +2917 -0
  9. gstaichi/_lib/core/py.typed +0 -0
  10. gstaichi/_lib/runtime/runtime_cuda.bc +0 -0
  11. gstaichi/_lib/runtime/runtime_x64.bc +0 -0
  12. gstaichi/_lib/runtime/slim_libdevice.10.bc +0 -0
  13. gstaichi/_lib/utils.py +243 -0
  14. gstaichi/_logging.py +131 -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 +18 -0
  19. gstaichi/_test_tools/dataclass_test_tools.py +36 -0
  20. gstaichi/_test_tools/load_kernel_string.py +30 -0
  21. gstaichi/_test_tools/textwrap2.py +6 -0
  22. gstaichi/_version_check.py +100 -0
  23. gstaichi/ad/__init__.py +3 -0
  24. gstaichi/ad/_ad.py +530 -0
  25. gstaichi/algorithms/__init__.py +3 -0
  26. gstaichi/algorithms/_algorithms.py +117 -0
  27. gstaichi/assets/.git +1 -0
  28. gstaichi/assets/Go-Regular.ttf +0 -0
  29. gstaichi/assets/static/imgs/ti_gallery.png +0 -0
  30. gstaichi/examples/lcg_python.py +26 -0
  31. gstaichi/examples/lcg_taichi.py +34 -0
  32. gstaichi/examples/minimal.py +28 -0
  33. gstaichi/experimental.py +16 -0
  34. gstaichi/lang/__init__.py +50 -0
  35. gstaichi/lang/_dataclass_util.py +31 -0
  36. gstaichi/lang/_fast_caching/__init__.py +3 -0
  37. gstaichi/lang/_fast_caching/args_hasher.py +122 -0
  38. gstaichi/lang/_fast_caching/config_hasher.py +30 -0
  39. gstaichi/lang/_fast_caching/fast_caching_types.py +21 -0
  40. gstaichi/lang/_fast_caching/function_hasher.py +57 -0
  41. gstaichi/lang/_fast_caching/hash_utils.py +11 -0
  42. gstaichi/lang/_fast_caching/python_side_cache.py +52 -0
  43. gstaichi/lang/_fast_caching/src_hasher.py +83 -0
  44. gstaichi/lang/_kernel_impl_dataclass.py +212 -0
  45. gstaichi/lang/_ndarray.py +366 -0
  46. gstaichi/lang/_ndrange.py +152 -0
  47. gstaichi/lang/_template_mapper.py +195 -0
  48. gstaichi/lang/_texture.py +172 -0
  49. gstaichi/lang/_wrap_inspect.py +215 -0
  50. gstaichi/lang/any_array.py +99 -0
  51. gstaichi/lang/ast/__init__.py +7 -0
  52. gstaichi/lang/ast/ast_transformer.py +1351 -0
  53. gstaichi/lang/ast/ast_transformer_utils.py +346 -0
  54. gstaichi/lang/ast/ast_transformers/__init__.py +0 -0
  55. gstaichi/lang/ast/ast_transformers/call_transformer.py +327 -0
  56. gstaichi/lang/ast/ast_transformers/function_def_transformer.py +304 -0
  57. gstaichi/lang/ast/checkers.py +106 -0
  58. gstaichi/lang/ast/symbol_resolver.py +57 -0
  59. gstaichi/lang/ast/transform.py +9 -0
  60. gstaichi/lang/common_ops.py +310 -0
  61. gstaichi/lang/exception.py +80 -0
  62. gstaichi/lang/expr.py +180 -0
  63. gstaichi/lang/field.py +428 -0
  64. gstaichi/lang/impl.py +1259 -0
  65. gstaichi/lang/kernel_arguments.py +155 -0
  66. gstaichi/lang/kernel_impl.py +1386 -0
  67. gstaichi/lang/matrix.py +1835 -0
  68. gstaichi/lang/matrix_ops.py +341 -0
  69. gstaichi/lang/matrix_ops_utils.py +190 -0
  70. gstaichi/lang/mesh.py +687 -0
  71. gstaichi/lang/misc.py +784 -0
  72. gstaichi/lang/ops.py +1494 -0
  73. gstaichi/lang/runtime_ops.py +13 -0
  74. gstaichi/lang/shell.py +35 -0
  75. gstaichi/lang/simt/__init__.py +5 -0
  76. gstaichi/lang/simt/block.py +94 -0
  77. gstaichi/lang/simt/grid.py +7 -0
  78. gstaichi/lang/simt/subgroup.py +191 -0
  79. gstaichi/lang/simt/warp.py +96 -0
  80. gstaichi/lang/snode.py +489 -0
  81. gstaichi/lang/source_builder.py +150 -0
  82. gstaichi/lang/struct.py +810 -0
  83. gstaichi/lang/util.py +312 -0
  84. gstaichi/linalg/__init__.py +10 -0
  85. gstaichi/linalg/matrixfree_cg.py +310 -0
  86. gstaichi/linalg/sparse_cg.py +59 -0
  87. gstaichi/linalg/sparse_matrix.py +303 -0
  88. gstaichi/linalg/sparse_solver.py +123 -0
  89. gstaichi/math/__init__.py +11 -0
  90. gstaichi/math/_complex.py +205 -0
  91. gstaichi/math/mathimpl.py +886 -0
  92. gstaichi/profiler/__init__.py +6 -0
  93. gstaichi/profiler/kernel_metrics.py +260 -0
  94. gstaichi/profiler/kernel_profiler.py +586 -0
  95. gstaichi/profiler/memory_profiler.py +15 -0
  96. gstaichi/profiler/scoped_profiler.py +36 -0
  97. gstaichi/sparse/__init__.py +3 -0
  98. gstaichi/sparse/_sparse_grid.py +77 -0
  99. gstaichi/tools/__init__.py +12 -0
  100. gstaichi/tools/diagnose.py +117 -0
  101. gstaichi/tools/np2ply.py +364 -0
  102. gstaichi/tools/vtk.py +38 -0
  103. gstaichi/types/__init__.py +21 -0
  104. gstaichi/types/annotations.py +52 -0
  105. gstaichi/types/compound_types.py +71 -0
  106. gstaichi/types/enums.py +49 -0
  107. gstaichi/types/ndarray_type.py +169 -0
  108. gstaichi/types/primitive_types.py +206 -0
  109. gstaichi/types/quant.py +88 -0
  110. gstaichi/types/texture_type.py +85 -0
  111. gstaichi/types/utils.py +11 -0
  112. gstaichi-0.0.0.data/data/SPIRV-Tools/cmake/SPIRV-ToolsConfig.cmake +5 -0
  113. gstaichi-0.0.0.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget-release.cmake +29 -0
  114. gstaichi-0.0.0.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget.cmake +113 -0
  115. gstaichi-0.0.0.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffConfig.cmake +5 -0
  116. gstaichi-0.0.0.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets-release.cmake +19 -0
  117. gstaichi-0.0.0.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets.cmake +122 -0
  118. gstaichi-0.0.0.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkConfig.cmake +5 -0
  119. gstaichi-0.0.0.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets-release.cmake +19 -0
  120. gstaichi-0.0.0.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets.cmake +122 -0
  121. gstaichi-0.0.0.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintConfig.cmake +5 -0
  122. gstaichi-0.0.0.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets-release.cmake +19 -0
  123. gstaichi-0.0.0.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets.cmake +122 -0
  124. gstaichi-0.0.0.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optConfig.cmake +5 -0
  125. gstaichi-0.0.0.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets-release.cmake +19 -0
  126. gstaichi-0.0.0.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets.cmake +122 -0
  127. gstaichi-0.0.0.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceConfig.cmake +5 -0
  128. gstaichi-0.0.0.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget-release.cmake +19 -0
  129. gstaichi-0.0.0.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget.cmake +122 -0
  130. gstaichi-0.0.0.data/data/bin/SPIRV-Tools-shared.dll +0 -0
  131. gstaichi-0.0.0.data/data/include/GLFW/glfw3.h +6389 -0
  132. gstaichi-0.0.0.data/data/include/GLFW/glfw3native.h +594 -0
  133. gstaichi-0.0.0.data/data/include/spirv-tools/instrument.hpp +268 -0
  134. gstaichi-0.0.0.data/data/include/spirv-tools/libspirv.h +907 -0
  135. gstaichi-0.0.0.data/data/include/spirv-tools/libspirv.hpp +375 -0
  136. gstaichi-0.0.0.data/data/include/spirv-tools/linker.hpp +97 -0
  137. gstaichi-0.0.0.data/data/include/spirv-tools/optimizer.hpp +970 -0
  138. gstaichi-0.0.0.data/data/lib/SPIRV-Tools-diff.lib +0 -0
  139. gstaichi-0.0.0.data/data/lib/SPIRV-Tools-link.lib +0 -0
  140. gstaichi-0.0.0.data/data/lib/SPIRV-Tools-lint.lib +0 -0
  141. gstaichi-0.0.0.data/data/lib/SPIRV-Tools-opt.lib +0 -0
  142. gstaichi-0.0.0.data/data/lib/SPIRV-Tools-reduce.lib +0 -0
  143. gstaichi-0.0.0.data/data/lib/SPIRV-Tools-shared.lib +0 -0
  144. gstaichi-0.0.0.data/data/lib/SPIRV-Tools.lib +0 -0
  145. gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3Config.cmake +3 -0
  146. gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake +65 -0
  147. gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake +19 -0
  148. gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3Targets.cmake +107 -0
  149. gstaichi-0.0.0.data/data/lib/glfw3.lib +0 -0
  150. gstaichi-0.0.0.dist-info/METADATA +97 -0
  151. gstaichi-0.0.0.dist-info/RECORD +154 -0
  152. gstaichi-0.0.0.dist-info/WHEEL +5 -0
  153. gstaichi-0.0.0.dist-info/licenses/LICENSE +201 -0
  154. gstaichi-0.0.0.dist-info/top_level.txt +1 -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)
Binary file
@@ -0,0 +1,97 @@
1
+ Metadata-Version: 2.4
2
+ Name: gstaichi
3
+ Version: 0.0.0
4
+ Summary: The GsTaichi Programming Language
5
+ Maintainer: GsTaichi developers
6
+ License: Apache Software License (http://www.apache.org/licenses/LICENSE-2.0)
7
+ Project-URL: Homepage, https://github.com/Genesis-Embedded-AI/gstaichi
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: <4.0,>=3.10
21
+ Description-Content-Type: text/markdown
22
+ License-File: LICENSE
23
+ Requires-Dist: numpy
24
+ Requires-Dist: colorama
25
+ Requires-Dist: dill
26
+ Requires-Dist: pydantic
27
+ Requires-Dist: rich
28
+ Requires-Dist: setuptools>=68.0.0
29
+ Requires-Dist: cffi>=1.16.0
30
+ Provides-Extra: docs
31
+ Requires-Dist: sphinx; extra == "docs"
32
+ Requires-Dist: sphinx-copybutton; extra == "docs"
33
+ Requires-Dist: myst_parser; extra == "docs"
34
+ Requires-Dist: sphinx-subfigure; extra == "docs"
35
+ Requires-Dist: sphinxcontrib-video; extra == "docs"
36
+ Requires-Dist: sphinx-togglebutton; extra == "docs"
37
+ Requires-Dist: sphinx-design; extra == "docs"
38
+ Requires-Dist: pydata-sphinx-theme; extra == "docs"
39
+ Requires-Dist: sphinx-autoapi; extra == "docs"
40
+ Dynamic: license-file
41
+
42
+ # GsTaichi
43
+
44
+ [GsTaichi](https://github.com/Genesis-Embodied-AI/gstaichi) was forked in June 2025. This repository (or gstaichi) 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:
45
+ - 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)
46
+ - added dataclasses.dataclass structs:
47
+ - work with both ndarrays and fields (cf ti.struct (field only), ti.dataclass (field only), ti.data_oriented (field only), argpack (ndarray only))
48
+ - can be passed into child `ti.func`tions (cf argpack)
49
+ - does not affect kernel runtime speed (kernels see only the underlying arrays, no indirection is added within the kernel layer)
50
+ - removed GUI/GGUI, C-API, AOT, DX11, DX12, IOS, Android, OpenGL, GLES
51
+
52
+ Planned features:
53
+ - reduce warm cache launch latency
54
+ - (maybe) add launch args caching, to reduce launch latency
55
+ - make dataclasses.dataclass nestable
56
+
57
+ Planned pruning:
58
+ - remove argpack
59
+ - remove ti CLI
60
+ - remove support for NVidia GPUs earlier than sm_60/Pascal
61
+
62
+ # What is gstaichi?
63
+
64
+ GsTaichi is a high performance multi-platform compiler, targeted at physics simulations. It compiles Python code into parallelizable kernels that can run on:
65
+ - NVidia GPUs, using CUDA
66
+ - Vulkan-compatible GPUs, using SPIR-V
67
+ - Mac Metal GPUs
68
+ - x86 and arm64 CPUs
69
+
70
+ GsTaichi supports automatic differentiation. GsTaichi lets you build fully fused GPU kernels, using Python.
71
+
72
+ [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.
73
+
74
+ # Installation
75
+ ## Prerequisites
76
+ - Python 3.10-3.13
77
+ - Mac OS 14, 15, Windows, or Ubuntu 22.04-24.04 or compatible
78
+
79
+ ## Procedure
80
+ ```
81
+ pip install gstaichi
82
+ ```
83
+
84
+ (For how to build from source, see our CI build scripts, e.g. [linux build scripts](.github/workflows/scripts_new/linux_x86/) )
85
+
86
+ # Documentation
87
+
88
+ - [docs](https://genesis-embodied-ai.github.io/gstaichi/user_guide/index.html)
89
+ - [API reference](https://genesis-embodied-ai.github.io/gstaichi/autoapi/index.html)
90
+
91
+ # Something is broken!
92
+
93
+ - [Create an issue](https://github.com/Genesis-Embodied-AI/gstaichi/issues/new/choose)
94
+
95
+ # Acknowledgements
96
+
97
+ - 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,154 @@
1
+ gstaichi/CHANGELOG.md,sha256=wr5A-xzcAyCv3r1AMfIDRNwWNXSZHL5TM18yKy-qMNo,123
2
+ gstaichi/__init__.py,sha256=aOMk-zLhvuIO5CxWzXAouIZrUv4Wn-mz4WW70Xitcz8,1184
3
+ gstaichi/_funcs.py,sha256=u0o3F7Yq6r2dxkimThby4rvceRjUGajaLyzkPtwMJgM,23943
4
+ gstaichi/_kernels.py,sha256=3R9_Ht0q1BSku-Jslvf5eYQY2bD8vFS5ZvL-im_iLPs,14664
5
+ gstaichi/_logging.py,sha256=-4yqQ5rePskPzIbDdZSahAf4RYG_R7RNQDHau1wbcuc,3813
6
+ gstaichi/_version_check.py,sha256=oifkwL4GmcOgh9OR7V4LtYt4dTGzokVUFxnVJspaOE0,3614
7
+ gstaichi/experimental.py,sha256=SwtoqhUcSxCSea-sT10G-GgZaTcSWUNPmTACK0MCHH4,359
8
+ gstaichi/_lib/__init__.py,sha256=IgnWZtjr58NYAe2R89Dxw6CNl0N9xiY1IThbVscgXxc,96
9
+ gstaichi/_lib/utils.py,sha256=sEi0azEnb0jardg4pKMZfQAjoWgz6WOnwrdf2NSMOEA,7735
10
+ gstaichi/_lib/core/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
11
+ gstaichi/_lib/core/gstaichi_python.cp310-win_amd64.pyd,sha256=eew25sQ2eza8rdSpiGWG6tkMYj5YCLngWeLAaQoLhqc,80759808
12
+ gstaichi/_lib/core/gstaichi_python.pyi,sha256=7_57A_7rXZCOxePEciiEk2JNz_T21YsymFxIoED7kJE,113573
13
+ gstaichi/_lib/core/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
14
+ gstaichi/_lib/runtime/runtime_cuda.bc,sha256=l5PgfUseHFj-W_STsnFR1wvCYvJgXaSixFjOLrgBLps,155520
15
+ gstaichi/_lib/runtime/runtime_x64.bc,sha256=9MJa09hECw3LQBkNyIfjWvbWAVR0ybG68y964KBsFS0,140112
16
+ gstaichi/_lib/runtime/slim_libdevice.10.bc,sha256=9dlDFXMV4uIAIKy-1yU7ppNV_oMdIHDR9YqOT_7sfaw,171892
17
+ gstaichi/_snode/__init__.py,sha256=ufrWH-RIsTEFT_2Io4dQiWRPTLDrC37RpXpBp38LHq8,107
18
+ gstaichi/_snode/fields_builder.py,sha256=nl272xfq6sbNbM3DHXm6y4MNM8LhhPGENFbyfjxpNVM,6950
19
+ gstaichi/_snode/snode_tree.py,sha256=MFrrz6_4MtkYP4UzFur1YwMIizyA5hXYraQukTi3QcI,1231
20
+ gstaichi/_test_tools/__init__.py,sha256=L_bma9gaGuWIsQoJMlvpVbzBGg0ONopaX7yj7CX-Yfg,459
21
+ gstaichi/_test_tools/dataclass_test_tools.py,sha256=bC-DcUeKxsMfOAsYvYFw7CDAe4eQ67u8O-GeCSe3gtc,1249
22
+ gstaichi/_test_tools/load_kernel_string.py,sha256=PfYrMVzL3PfTQhpZebDxipa_lmwA8lcVDsvQ1p1bmnw,1037
23
+ gstaichi/_test_tools/textwrap2.py,sha256=98o8ooRvS8pdRIDOIr4l7nyzNNfV7DKqnwPwP8VoQJ4,186
24
+ gstaichi/ad/__init__.py,sha256=OZJX0DpEa8iivSWi3R_BUmmbTaUUFKYPEvCsmJaFhV4,49
25
+ gstaichi/ad/_ad.py,sha256=9la_eRa0ipYRvr32InLOuk1I9ePc0tGCf82xs_poXwQ,19742
26
+ gstaichi/algorithms/__init__.py,sha256=ueWUSLoLUkh4k-deNS3dxRi9QYNIrtwxNveYb5vaJkE,46
27
+ gstaichi/algorithms/_algorithms.py,sha256=7ZBfgVexL4mIMny1WU4JEGJz7r-hx8DwnYhPbgVRbq4,3822
28
+ gstaichi/assets/.git,sha256=_sepXJOH-4A9o4jtu-46jG2P6XHHbsvGW3642aKNQBc,43
29
+ gstaichi/assets/Go-Regular.ttf,sha256=S7gpWTE2QWxqOezcRUguBS91rDdOZFm5r2jU-6J5OWw,134988
30
+ gstaichi/assets/static/imgs/ti_gallery.png,sha256=rOeh8JlUXb-ZdkTaei3cVyJXZBWOqcJBLdndAORUdtU,263871
31
+ gstaichi/examples/lcg_python.py,sha256=u7qOy9U85a6WlMVtZxMTliT1aW1dVLArb5wpgFuhuxA,525
32
+ gstaichi/examples/lcg_taichi.py,sha256=DdgW-Fk6CSTdPg1VLgnhtV_YMfJ2JqfIRnNro4CC_mU,719
33
+ gstaichi/examples/minimal.py,sha256=za9d0kngi_JSHWyRS69iwIiNzRMTSIi79CRftuqat60,633
34
+ gstaichi/lang/__init__.py,sha256=sjF-ViOYJbB-jDMSlaHddcp8kgWPcUGBqq7ZqL4ClvI,1401
35
+ gstaichi/lang/_dataclass_util.py,sha256=1N8bZYLzwTDZ5Kau8ejMH9EtpxD2M2vPuhIWxZtLM7c,1122
36
+ gstaichi/lang/_kernel_impl_dataclass.py,sha256=NKpNage3Xye_cBIWdQFD4hNd9aghH800xLFbwBRst94,7678
37
+ gstaichi/lang/_ndarray.py,sha256=6YY5-4ff_NMMJnG5in0mLkVDpR08k8ifBZgOJqiy8kE,11554
38
+ gstaichi/lang/_ndrange.py,sha256=ATLSTdjdMGXcz3jCn2vkaaDGUglK5I4M9mwk4gJCLx8,5921
39
+ gstaichi/lang/_template_mapper.py,sha256=5FX37WzYQrIPqGRCCwzzsljUiaRUXVbxhp6oFHcMfqU,9941
40
+ gstaichi/lang/_texture.py,sha256=fGIPeGFZz1DO-RAUuEAiwSJIRN8o-7wgZi1URR4UFOw,6784
41
+ gstaichi/lang/_wrap_inspect.py,sha256=reAvDWdwhjZdRxiO8lPGv4_AUnYQNZoyrf1zOQSp12Y,7870
42
+ gstaichi/lang/any_array.py,sha256=Uq5K-QZjWgBNvYBXlL831r96MPtEPF5jFTTHrAmrhFY,3391
43
+ gstaichi/lang/common_ops.py,sha256=bIGmalXVnxVc5mw-k704zFwr38bR9uZx_4ieNS3PYpQ,8768
44
+ gstaichi/lang/exception.py,sha256=f-EWm56Px6TpskhCgEReqoY8meg_-4nZD9vFOA5TVic,2165
45
+ gstaichi/lang/expr.py,sha256=bSWJyNJ55Xnv7mADHxKRhwH0lB2cXnRi9EpCrHgElLY,6587
46
+ gstaichi/lang/field.py,sha256=pppo98T6DsHPhOR0-g-oc5lmEoR-mZeh96pMLkUyDQI,13677
47
+ gstaichi/lang/impl.py,sha256=-EnIJ9nkNUc_hn8_BmHrCJ6yR_iNqBkBSQvUkEmXYiQ,43491
48
+ gstaichi/lang/kernel_arguments.py,sha256=ZUtk3AFs7xReYjoogTZ2xTMFaRZGAkFpOi1Et_lTGfY,6486
49
+ gstaichi/lang/kernel_impl.py,sha256=ii9GMTWT8dDI61uu1X854OtsuKFRpB5bn7tp5ouqs6E,63052
50
+ gstaichi/lang/matrix.py,sha256=7bLpkkN_M9q9vHEY4ejpsGfQ99oTL8SFJiHzHIU7VBk,63762
51
+ gstaichi/lang/matrix_ops.py,sha256=v89ID3thZ8irSLU9Tyf1hmEdQTjGyMHWqvfzsvnFxGo,10399
52
+ gstaichi/lang/matrix_ops_utils.py,sha256=rrrC5KjmCt1w0ZNtLWqo5ZOjZNR74iqGjuVfHvqwwxg,5435
53
+ gstaichi/lang/mesh.py,sha256=ukqJYWSf3ANPoiV4Ue-DWMPZ0y21bGrhEUseVAIJK4w,27758
54
+ gstaichi/lang/misc.py,sha256=HMWBdv5D0Car1vFbs2Z5JCR3n9DRo0AXMcLJr9m6vBU,24563
55
+ gstaichi/lang/ops.py,sha256=zKwfBLQrdnyyoHflIUe9DY3BQ2wQusfRrDLPRyAThpk,45919
56
+ gstaichi/lang/runtime_ops.py,sha256=TKlPOBMWGGg0jQZFlik4f5c1Do5cUlhEMk6r4VlOfvM,237
57
+ gstaichi/lang/shell.py,sha256=k9YPpByujyHis2Vv-oHSJowQAhhS1Iic9Oa7JKhy584,1095
58
+ gstaichi/lang/snode.py,sha256=3e6Uqr3SCDQUOhNLgZFbSsVve36ZKdCX9ebc6kU2jDA,17613
59
+ gstaichi/lang/source_builder.py,sha256=ytBdJbFzcccD2ekVvy-v8YrllNEcSM1RRMUe-FWENI0,5959
60
+ gstaichi/lang/struct.py,sha256=xrSMsj2yg1Cu9hcFEWEzHPyjZ8b8pb6XzeVDj9hrf_o,30060
61
+ gstaichi/lang/util.py,sha256=teAlOWrFwDTiPwj2fJakgOY08to5ZvouuxolE4Cu8n4,7752
62
+ gstaichi/lang/_fast_caching/__init__.py,sha256=6k4yq6r4Lu1SI4IHt8ByDPhV8uGA8HHKCAcGqvCoUmE,97
63
+ gstaichi/lang/_fast_caching/args_hasher.py,sha256=-P6khr5xip81cKXLyCehgVMtgTa9iXk1tI8TzlcPTXo,4542
64
+ gstaichi/lang/_fast_caching/config_hasher.py,sha256=YtRFtJ8vA9sDgvzHBaMqLV8OG4voVjDTNeVDzPbHAzk,986
65
+ gstaichi/lang/_fast_caching/fast_caching_types.py,sha256=sjnqzi_8E1zTa6EMUTgJpCOoAaxVLviRS3tUsc5l-i0,661
66
+ gstaichi/lang/_fast_caching/function_hasher.py,sha256=Q53ReD1Lt694AR2-yuErSWP0WqIOQe4694IS2zXBhTY,1840
67
+ gstaichi/lang/_fast_caching/hash_utils.py,sha256=C42MfCBB5136-bYuvApgyw9QbGEOqJhe0l-ls8KgOUw,322
68
+ gstaichi/lang/_fast_caching/python_side_cache.py,sha256=-aJXpMGIAStU7zgSzFtNl0si8-9vEPYy7XCOtns_zUY,1847
69
+ gstaichi/lang/_fast_caching/src_hasher.py,sha256=0dNHyRUB-XbSezAH_O-veyNJ9KyJJWY_lzYi8H7tCNc,3378
70
+ gstaichi/lang/ast/__init__.py,sha256=tYsz9mKqiT2nZHLd5dDHRqz_W0svanpFWPGC_MGhLu8,303
71
+ gstaichi/lang/ast/ast_transformer.py,sha256=Lb8yVA4pyPHBNjLzYayhTMbk97gacOFBEHgJ1PVrYnU,61216
72
+ gstaichi/lang/ast/ast_transformer_utils.py,sha256=uWfclQrAnTtvHO_-6y0Fbp810pGwFSUm2dJFf44Q1v0,12006
73
+ gstaichi/lang/ast/checkers.py,sha256=Lckg_gHzJyXTWVLYdp2HKBJxVygXwc1E2C8D_XTsL2k,3906
74
+ gstaichi/lang/ast/symbol_resolver.py,sha256=BtTp-U36tLZwbZVHI7Cq5-6GmrnaWdqC6S7SiWD4t4Q,1829
75
+ gstaichi/lang/ast/transform.py,sha256=z28ji4mXsZ8Q9LmvaOkHu3BuE1m_opTaCMuP56ptvxQ,275
76
+ gstaichi/lang/ast/ast_transformers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
77
+ gstaichi/lang/ast/ast_transformers/call_transformer.py,sha256=B67v8zZuxFuoiVsEaLvPQ8acnTQFMrBw1xyT7tsOHWM,14032
78
+ gstaichi/lang/ast/ast_transformers/function_def_transformer.py,sha256=aR5WAw7INDpgJm7OI4pOJWTo3zuyVvC_qs0MonadxWI,12554
79
+ gstaichi/lang/simt/__init__.py,sha256=63Z2qOmwx3hq1PdnJTCmwuKGIT9c24lFX_HgCtXMEJY,129
80
+ gstaichi/lang/simt/block.py,sha256=2L0u67bFYfTamprexNwAD_7-ICClVshiZKeFsflXS60,3733
81
+ gstaichi/lang/simt/grid.py,sha256=9ZG9nokauer_2U3pF1xs6g3vmESJW1Tc0WlprjiTPio,147
82
+ gstaichi/lang/simt/subgroup.py,sha256=1remFLCKn7lCjCu_aoJi_61AbmSCip4MrDCRvoGWvHs,3972
83
+ gstaichi/lang/simt/warp.py,sha256=7G5jvLK3LG7UtUrxWPFaTevWHKTcMMcQfswcoAZxnvs,3183
84
+ gstaichi/linalg/__init__.py,sha256=05QRD_DG-y5GGeh2kuZ1RIzHdmeqU0D5I71wnVl-YZo,317
85
+ gstaichi/linalg/matrixfree_cg.py,sha256=6di4ukw0Fria0YbIQD2NThN9Ug-sLL676hpwI9nPihY,10648
86
+ gstaichi/linalg/sparse_cg.py,sha256=dIib4CX7VrcmNDMQQ-GbFbEOMGbz_-qYiY9m2z7owyA,2617
87
+ gstaichi/linalg/sparse_matrix.py,sha256=S-kiQHjMbaMLOtOL0xjwulIv-4GV7traEZNYr3EVoXU,11274
88
+ gstaichi/linalg/sparse_solver.py,sha256=3xn47VgRq2VrmZE7jORWPEjwEIs4IoARZE_MMzUdsd8,5051
89
+ gstaichi/math/__init__.py,sha256=SNSKaPVXAJkxxA1DKV_SbgGL4m52Jli-w-nKPa6StNI,214
90
+ gstaichi/math/_complex.py,sha256=-xUZbUc9EZk53u7x3x9W4KLOEq-hzdWk5AHwMm_7x4E,5185
91
+ gstaichi/math/mathimpl.py,sha256=pFH_VOOeRyMYT1BBR6m017VhMKlWV0awiseasJFD8HI,22619
92
+ gstaichi/profiler/__init__.py,sha256=TK0K83FmQpSYArY8elycQujea_zCZApG9-dRHdnPUz0,213
93
+ gstaichi/profiler/kernel_metrics.py,sha256=zGSi38qKf1t1NxIx4RUFy_BNo42MlCmIQ4e7CpSf_5c,7883
94
+ gstaichi/profiler/kernel_profiler.py,sha256=xIwgVdjGitwpLOkSVUXS0ThcPmN66q7ORJKWI9w_Q1w,22862
95
+ gstaichi/profiler/memory_profiler.py,sha256=AW8ekyrdBqKV9uQJq7EdTBAx6Ytf8qblYllVY5H-6tk,358
96
+ gstaichi/profiler/scoped_profiler.py,sha256=E9XaqWJkHS9-S_qPWmH0OoAgnAaqKoTlUQBqJMuhSv4,1007
97
+ gstaichi/sparse/__init__.py,sha256=7VN50pijO_9Z498YrtApTIMR6FjZ_LQPlftUBajudMQ,47
98
+ gstaichi/sparse/_sparse_grid.py,sha256=y8hSerL3ti7xgmIsXn3jSz0uboqYux2kGD2V1GIzG7g,2509
99
+ gstaichi/tools/__init__.py,sha256=tR6azYK2JhYiPNP-r_Phi8bG6bfT_hSp6xfs8yECMiI,329
100
+ gstaichi/tools/diagnose.py,sha256=OZCQk_E5ijCXgBjSkUk3dDwenlQWXd-SLFBAgT4drHk,3565
101
+ gstaichi/tools/np2ply.py,sha256=2hJKNZvpoHCh8PBKXWBjkBCUu_q1U6L4eAmKdRBXUbg,15635
102
+ gstaichi/tools/vtk.py,sha256=ziOsTJI4AaDy1OxNxsU2pi98J3_QXqkEJwTwMRsYJoM,1070
103
+ gstaichi/types/__init__.py,sha256=uI32Gy4ZCaZT4PM9_OX0Y7n3yKUvm-juUL1az3PzXBA,644
104
+ gstaichi/types/annotations.py,sha256=nxLVzLhCoX2dvV6wskQPsx7xbgNuo0M1_dKr2-Z_je4,1225
105
+ gstaichi/types/compound_types.py,sha256=DnfLSXAlfvDct88QJfez-KgIn8zGWH1RANsHuInFfOQ,1953
106
+ gstaichi/types/enums.py,sha256=U6b2fXrIhBkYtWzz5IFmCNUndx8M-nyCP8nEUgr0l04,2099
107
+ gstaichi/types/ndarray_type.py,sha256=qaJE7G_6jp8jifWPSsvt_yzTMT3CNmNEJlcEz9V5F3s,7423
108
+ gstaichi/types/primitive_types.py,sha256=otvV6aBEtMANfjiPaDjl2oB6_7yOsrkgwDkMgg73i_c,4273
109
+ gstaichi/types/quant.py,sha256=orvn3oskYlhDd5Hln-Bt-oe0EXsPNjfOznMOCBEf1ak,3061
110
+ gstaichi/types/texture_type.py,sha256=wWhaDNwOQwdMSnxCzXsltr3bWLmreOC9DvEVUV0vIAI,2444
111
+ gstaichi/types/utils.py,sha256=8X1XmYXhPp-ANzwKRQhQmXV47DW9u-uWoc0fxMrWRDQ,276
112
+ gstaichi-0.0.0.data/data/SPIRV-Tools/cmake/SPIRV-ToolsConfig.cmake,sha256=jFprL3mwRRYJ0eh52yZqmUAWD9cA7xA7hhstBQU_scY,230
113
+ gstaichi-0.0.0.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget-release.cmake,sha256=X438aOEvZsAeo6Suk2LfStdal8R5m3UyfUPCg51DXGM,1477
114
+ gstaichi-0.0.0.data/data/SPIRV-Tools/cmake/SPIRV-ToolsTarget.cmake,sha256=mriRCzvolwIXT55WDaD2ouu6AQvVHXQbRdJPmj0ZtSg,4468
115
+ gstaichi-0.0.0.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffConfig.cmake,sha256=3S1hOLuDTsAwTH-F_Xn9iBdCjjOH6Kx3EjNhDXBVShw,280
116
+ gstaichi-0.0.0.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets-release.cmake,sha256=6fnDD1oaU-DEP4JIq75wotq4OSPW63pe5jEcTVwEtyo,890
117
+ gstaichi-0.0.0.data/data/SPIRV-Tools-diff/cmake/SPIRV-Tools-diffTargets.cmake,sha256=U1RmMclqSVR8vePS98vpT2RqItqnivv5tXbfM58i9V0,5068
118
+ gstaichi-0.0.0.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkConfig.cmake,sha256=HgRoCSWZQhGnNEs938xBFDSdxK6crL6VtbrQ9-DqcMY,280
119
+ gstaichi-0.0.0.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets-release.cmake,sha256=cqDRYOLX02s-xo8EKyuGQwYX6uNa2Lxb363OP0tUB54,890
120
+ gstaichi-0.0.0.data/data/SPIRV-Tools-link/cmake/SPIRV-Tools-linkTargets.cmake,sha256=nlQJ33ZSrKM5w-xi7lYlopolM5lwcX4Yyqrytlbvj5c,5028
121
+ gstaichi-0.0.0.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintConfig.cmake,sha256=E0o9wMS7mOV58CacqGpW5EOyG70WrdBKexx1AFlCyiQ,280
122
+ gstaichi-0.0.0.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets-release.cmake,sha256=3QC3rN6BhZ4n5-WrR9pmu4AfH1QKFIGCCXZjPA3A8c0,890
123
+ gstaichi-0.0.0.data/data/SPIRV-Tools-lint/cmake/SPIRV-Tools-lintTargets.cmake,sha256=X2bmbqKDvgHDUaYEjssse8Rgk_ZsETuMMS3EaX2gmo0,5068
124
+ gstaichi-0.0.0.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optConfig.cmake,sha256=CYygoz_0kxDnsT7_NbByRCuviPMS0TwwK86Qwc6tnnw,275
125
+ gstaichi-0.0.0.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets-release.cmake,sha256=vSAY69UsznqGYYqEUdL255U2B3LUZl9PSexaQwmPECw,883
126
+ gstaichi-0.0.0.data/data/SPIRV-Tools-opt/cmake/SPIRV-Tools-optTargets.cmake,sha256=5Erfqk7DZeEa2sveBBlRw8QwBrdBZ55GDdo14DdNxpI,5029
127
+ gstaichi-0.0.0.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceConfig.cmake,sha256=i2lpvjP36I_6iEh5mObgdPMz5UOHQ4wIIOcbP5NIjTk,290
128
+ gstaichi-0.0.0.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget-release.cmake,sha256=D2c9eUqoh3H-ihr_1up2Ppo_2nSLoNyxmo9eWUV_pGE,904
129
+ gstaichi-0.0.0.data/data/SPIRV-Tools-reduce/cmake/SPIRV-Tools-reduceTarget.cmake,sha256=_Miasn_g_L8dG2fTiigOC-rrDc3aKgHy3IfMi7DB2b4,5077
130
+ gstaichi-0.0.0.data/data/bin/SPIRV-Tools-shared.dll,sha256=_wazG8CrJVDQHWJUUDS_RldSNdQnffDHUJMPMs1ylLk,2042368
131
+ gstaichi-0.0.0.data/data/include/GLFW/glfw3.h,sha256=QIB4KnbXSK4tfZ99LqTfJdn-ObkYf5vp70ee9uBPzFQ,240786
132
+ gstaichi-0.0.0.data/data/include/GLFW/glfw3native.h,sha256=3hGJGACURjjhav5xcOb9F1fW76uPjfAzoXZlK3UUxAc,19397
133
+ gstaichi-0.0.0.data/data/include/spirv-tools/instrument.hpp,sha256=92ifeZiADg0tWjsnYsVqQoH5KbIxxnz3AK-S9r0ln2A,11917
134
+ gstaichi-0.0.0.data/data/include/spirv-tools/libspirv.h,sha256=3rvQUbgMs9h3jxnC4OLRyPN-lWvqSjHgy7tS3ZkOYvI,42688
135
+ gstaichi-0.0.0.data/data/include/spirv-tools/libspirv.hpp,sha256=TMJs7spPKjYx0FlnorbOSany4R1k2bk8B4wOi_vttic,15012
136
+ gstaichi-0.0.0.data/data/include/spirv-tools/linker.hpp,sha256=SKevy72q3RRFOdqQotIb08h9NNMfAnNMKmSF7B20d0A,3691
137
+ gstaichi-0.0.0.data/data/include/spirv-tools/optimizer.hpp,sha256=5MPYUrk-hRM6tbFkCr2IUKsukO8eAPjA9_DE-ib4Lnk,50060
138
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools-diff.lib,sha256=SzwJ0P2daJJYDxGNrhtDvxn0yAK-5iUJYZ8gh2gfPoQ,4766344
139
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools-link.lib,sha256=FhrOBM-2rHgtxyGLKoOxv4SU08tlkKttALiknlYjMHY,4074904
140
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools-lint.lib,sha256=d4KzYxIfmgPT1FW4mZztYhZMObmGT-HA9Y4at1x5oX4,4723542
141
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools-opt.lib,sha256=8VrhgCkK4rP04EnJEEsQ_WtVIT48n12nTBo8YfLhY44,153197732
142
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools-reduce.lib,sha256=OCRMr-i68AyZjsw-8XGH5JrpzQseNb1YdYcrGthaGqY,14806994
143
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools-shared.lib,sha256=iQCA4KcmJ-nlgFUGcbJq8JTscDZ4uZEHatggzRzTMB8,16470
144
+ gstaichi-0.0.0.data/data/lib/SPIRV-Tools.lib,sha256=Z-2BWAZmx8MeAUZX6HqkzHw1teSidQb9jQv2WU3d_fU,37167956
145
+ gstaichi-0.0.0.data/data/lib/glfw3.lib,sha256=nSk-8MdykX6GJgpiOesrEvvv-AJKpSSQTeyLy2Mg_wA,687808
146
+ gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3Config.cmake,sha256=YZVL9F2A70B51dNW0W--Scv9ga3cbyZYjlsaDCs-zHk,118
147
+ gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3ConfigVersion.cmake,sha256=mttbBnVYyxo57F-pEE8g4-E62lcH8xYujvlmTQyD7ug,2827
148
+ gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3Targets-release.cmake,sha256=VlH9iN0TgA6MlsPimvnOgTG0gxzsaoGj-RmWEqd9QHA,806
149
+ gstaichi-0.0.0.data/data/lib/cmake/glfw3/glfw3Targets.cmake,sha256=D3NWABsZAPn6vu3kAtXXUo3Lqql5NiGhSHVqtwg3UOw,4242
150
+ gstaichi-0.0.0.dist-info/licenses/LICENSE,sha256=HrhfyXIkWY2tGFK11kg7vPCqhgh5DcxleloqdhrpyMY,11558
151
+ gstaichi-0.0.0.dist-info/METADATA,sha256=GM5YmUMRqdwCoVMMlT42llZYShIEeAMsP4bd_IteFW4,4659
152
+ gstaichi-0.0.0.dist-info/WHEEL,sha256=KUuBC6lxAbHCKilKua8R9W_TM71_-9Sg5uEP3uDWcoU,101
153
+ gstaichi-0.0.0.dist-info/top_level.txt,sha256=BoKkPzj6Sfycl5Ge5sB9QRDVZvFB5R0sxbZn4YNPb80,9
154
+ gstaichi-0.0.0.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
+