void vsip_vlge_f(const vsip_vview_f *a, const vsip_vview_f *b, const vsip_vview_bl *r);
This function performs an element-wise greater-or-equal-than comparison between two vectors, storing the results in a boolean vector. The operation performs element-wise comparison:

for all
from 0 to
, where
is the length of the vectors, and
is a boolean value that is true if
is greater or equal
than
, and false otherwise.
const vsip_vview_p* a: First input vector.
const vsip_vview_p* b: Second input vector.
const vsip_vview_bl* r: Output boolean vector that will store the comparison results.
All three vectors must have the same length.