taichi icon indicating copy to clipboard operation
taichi copied to clipboard

Productive, portable, and performant GPU programming in Python.

Results 479 taichi issues
Sort by recently updated
recently updated
newest added

Related issue = https://github.com/taichi-dev/taichi/issues/2906

Related issue = #5513 **Usage** ```python # Get translation matrix translate_vec = ti.Vector([1., 2., 3.]) translate_mat = ti.Matrix.translate(translate_vec[0], translate_vec[1], translate_vec[2]) # Get scale matrix scale_vec = ti.Vector([1., 2., 3.]) scale_mat...

**Describe the bug** In static method `Test.test`, why can't I access the value of v[0]. **To Reproduce** ```py # sample code here import taichi as ti ti.init(arch=ti.cuda) class Test: @staticmethod...

potential bug

hi, everyone! I write an aot vulkan demo on Android like this https://github.com/taichi-dev/taichi-aot-demo/blob/master/implicit_fem/include/fem_app.h,and compiled an binary executable file with cmake "add_executable". When I run the binary executable file, I found...

question

Related issue = # reported by `ti example jacobian`

This PR implements documentations and API doc generator of C-API.

Related issue = #4401 The release test seems to be using the offline cache of previous jobs on Windows and M1.

This PR introduced texture interfaces to C-API. **(WIP)** Don't merge!