-
Notifications
You must be signed in to change notification settings - Fork 2.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Does dynamic SNode support vector field? #6205
Labels
question
Question on using Taichi
Comments
Hi @Linyou, you can only append an int32 value to dynamic SNode now. The walkaround is that you could append the values of vec3 one by one. |
Hi @FantasyVR, thanks for the reply. I am using it to just store the indices when I found that it only supports append an int32 value. |
@Linyou glad that you can work around it using i32. FYI we plan to refine dynamic snode support in Q4 so stay stuned! |
ailzhang
pushed a commit
to ailzhang/taichi
that referenced
this issue
Oct 14, 2022
taichi-gardener
pushed a commit
to ailzhang/taichi
that referenced
this issue
Oct 14, 2022
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi, I'm trying to use dynamic snode to construct a vec3 field, but the documentation only gives the
ti.append()
method and only supports scalar inputs. Is there any way to construct a dynamic snode for the vector field?Also, consider the following code.
The text was updated successfully, but these errors were encountered: