vcgts_f32ADD TO COMPARE ADDED TO COMPARE
Arm 64-bit (64 bits)/ NEON
View official documentation
Purpose:
Floating-point Compare Greater than (vector). This instruction reads each floating-point value in the first source SIMD&FP register and if the value is greater than the corresponding floating-point value in the second source SIMD&FP register sets every bit of the corresponding vector element in the destination SIMD&FP register to one, otherwise sets every bit of the corresponding vector element in the destination SIMD&FP register to zero.
Result:
uint32_t
Example:
#include <arm_neon.h>
#include <stdio.h>
int main() {
float32_t a = 5.5f;
float32_t b = 3.5f;
uint32_t result = vcgts_f32(a, b);
printf("%u\n", result);
return 0;
}
Prototypes
Assembly Instruction:
FCMGT
Usage:
uint32_t output =
vcgts_f32(
float32_t a, float32_t b
)
DB statistics
SIMD Engines: | 5 |
C Intrinsics: | 10702 |
NEON: | 4232 |
AVX2: | 462 |
AVX512: | 4955 |
SSE4.2: | 652 |
VSX: | 401 |