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
Some notes for people interested in the cause of this issue -
The type of default_fp is actually DataType in C++, and a DataType stores a pointer to its actual Type. The actual Type is unique, but the DataType wrapper can be different.
To reproduce:
The result gives
The id of the
f32
type of vec3 is not inti.types.real_type_ids
.This mismatch has the effect that the built-in
vec2/vec3/vec4
cannot be used as type hints since this line of code checks the id of the needed type.Shall we change that line referenced above in
kernel_impl.py
to the following?The text was updated successfully, but these errors were encountered: