vec_cmpge: Vector Compare Greater Than or Equal

d = vec_cmpge(a, b)

Returns a vector containing the results of a greater-than-or-equal-to comparison between each set of corresponding elements of the given vectors. For each element of the result, the value of each bit is 1 if the value of the corresponding element of a is greater than or equal to the value of the corresponding element of b. Otherwise, the value of each bit is 0.

This function emulates the operation on the integer vectors.

Table 1. Vector Compare Greater Than or Equal
d a b
vector bool char vector signed char vector signed char
vector unsigned char vector unsigned char
vector bool short vector signed short vector signed short
vector unsigned short vector unsigned short
vector bool int vector signed int vector signed int
vector unsigned int vector unsigned int
vector bool long long vector signed long long vector signed long long
vector unsigned long long vector unsigned long long
vector double vector double