Check if any values along a given dimension are true, according to an array of keys. More...
Functions | |
AFAPI void | anyTrueByKey (array &keys_out, array &vals_out, const array &keys, const array &vals, const int dim=-1) |
C++ Interface to check if any values along a given dimension are true, according to an array of keys. More... | |
AFAPI af_err | af_any_true_by_key (af_array *keys_out, af_array *vals_out, const af_array keys, const af_array vals, const int dim) |
C Interface to check if any values along a given dimension are true. More... | |
Check if any values along a given dimension are true, according to an array of keys.
Values corresponding to each group of consecutive equal keys will be tested to check if any are true. Keys can repeat; however, only consecutive key values will be considered for each reduction. If a key value is repeated somewhere else in the keys array it will be considered the start of a new reduction. There are two outputs: the reduced set of consecutive keys and the corresponding final set of reduced values.
An example demonstrating the reduction behavior can be seen in the following snippet.
The keys' input type must be integer (s32 or u32).
The output type is b8
.
The keys array must be 1-dimenstional matching the size of the reduced dimension. An example of multi-dimensional reduce-by-key can be seen below:
AFAPI af_err af_any_true_by_key | ( | af_array * | keys_out, |
af_array * | vals_out, | ||
const af_array | keys, | ||
const af_array | vals, | ||
const int | dim | ||
) |
C Interface to check if any values along a given dimension are true.
NaN values are ignored.
[out] | keys_out | reduced keys |
[out] | vals_out | array containing 1's if any true; 0's otherwise |
[in] | keys | keys array |
[in] | vals | input array |
[in] | dim | dimensions along which the check occurs |
AFAPI void anyTrueByKey | ( | array & | keys_out, |
array & | vals_out, | ||
const array & | keys, | ||
const array & | vals, | ||
const int | dim = -1 |
||
) |
C++ Interface to check if any values along a given dimension are true, according to an array of keys.
NaN values are ignored.
[out] | keys_out | reduced keys |
[out] | vals_out | array containing 1's if any true; 0's otherwise |
[in] | keys | keys array |
[in] | vals | input array |
[in] | dim | dimension along which the check occurs |