vec_cmplt: Vector Compare Less Than
d = vec_cmplt(a, b)Returns
a vector containing the results of a less-than 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 less than the value
of the corresponding element of b. Otherwise, the
value of each bit is 0.
This operation emulates the operation on the integer vectors.
| d | a | b | MIN ARCH |
|---|---|---|---|
| vector bool char | vector signed char | vector signed char | z13® 1 |
| vector unsigned char | vector unsigned char | z13 1 | |
| vector bool short | vector signed short | vector signed short | z13 1 |
| vector unsigned short | vector unsigned short | z13 1 | |
| vector bool int | vector signed int | vector signed int | z13 1 |
| vector unsigned int | vector unsigned int | z13 1 | |
| vector float | vector float | z14 1 | |
| vector bool long long | vector signed long long | vector signed long long | z13 1 |
| vector unsigned long long | vector unsigned long long | z13 1 | |
| vector double | vector double | z13 1 | |
|
Note:
1. This prototype has the exact same semantics as that in the OpenPOWER ABI for Linux® Supplement for the Power Architecture® 64-bit ELF V2 ABI, Revision 1.4.
|
|||