Closed ChillFish8 closed 2 months ago
The aim of these routines is to be able to compare two provided vectors and get back a resulting mask of 0's and 1s indicating true or false values.
0
1
likely operation API naming:
<dtype>_x<dims>_<arch>_nofma_cmp_eq_vector(a: &[T], b: &[T], result: &mut [T])
There can also be value-specialized operations:
<dtype>_x<dims>_<arch>_nofma_cmp_eq_value(value: T, a: &[T], result: &mut [T])
Naming might be difficult here, because there are a few different scenarios for routines:
any
all
The aim of these routines is to be able to compare two provided vectors and get back a resulting mask of
0
's and1
s indicating true or false values.likely operation API naming:
There can also be value-specialized operations:
Naming might be difficult here, because there are a few different scenarios for routines:
any
orall
like logic