You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
We are currently working on implementing our simulator using Taichi AOT. We can dump the shaders according to the demo code of implicit_fem.py. However, it seems that we cannot record the calling order of each kernel and we have to manually launch the kernels, which is not very productive. Is it possible to dump the launch order of the kernels and automatically launch them?
Thanks in advance!
The text was updated successfully, but these errors were encountered:
You can check out the compute graph work we have been doing. We decided to go with a graph API instead of a tracing API, as capturing a series of kernels is very hard to implement correctly. @ailzhang knows more about this
Hi, everyone!
We are currently working on implementing our simulator using Taichi AOT. We can dump the shaders according to the demo code of
implicit_fem.py
. However, it seems that we cannot record the calling order of each kernel and we have to manually launch the kernels, which is not very productive. Is it possible to dump the launch order of the kernels and automatically launch them?Thanks in advance!
The text was updated successfully, but these errors were encountered: