Adelsbach/VSIPL
Core Programming Reference Guide
DD-00016-015
Core

This manual is preliminary and incomplete.
While our Core implementation implements all functions given in the standard we are still working on completing this documentation.

Please refer to the VSIPL standard for a complete function reference of the Core profile until we have completed work on this documentation.

4.5.8 vsip_vlge_p - Element-wise Greater-Or-Equal-Than Comparison

void vsip_vlge_f(const vsip_vview_f *a, const vsip_vview_f *b, const vsip_vview_bl *r);
Description

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:

ri= (ai≥bi)

for all i from 0 to n-1, where n is the length of the vectors, and ri is a boolean value that is true if ai is greater or equal than bi, and false otherwise.

Parameters
Notes