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
I have noticed that equality operators are not allowed with vectors in TPC kernel code. Here is what the documentation says "Quality operators are equal (==), not equal to(!=) operate only on scalar types and result in an integer type."
So I am not allowed to do this...
bool64eq=v_i32_cmp_eq_b(y, e);
bool64ex=1;
if (eq!=ex) // not allowed, how to do something like this?
{
// do something different...
}
I am also not allowed to access a vector type, IE: eq[i] != ex[i]
Is there any way to perform this type of operation?
Thanks,
Bryan
The text was updated successfully, but these errors were encountered:
I have noticed that equality operators are not allowed with vectors in TPC kernel code. Here is what the documentation says "Quality operators are equal (==), not equal to(!=) operate only on scalar types and result in an integer type."
So I am not allowed to do this...
I am also not allowed to access a vector type, IE: eq[i] != ex[i]
Is there any way to perform this type of operation?
Thanks,
Bryan
The text was updated successfully, but these errors were encountered: