Please enter what you're looking for to continue your search
 

vcgth_f16
ADD TO COMPARE ADDED TO COMPARE

 Arm 64-bit (64 bits)/ NEON  View official documentation
 Location: Comparison  >  Vector Compare Greater Than, return Vector Mask
 Supported Architectures: A64
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:

uint16_t

Example:
#include <arm_neon.h>
#include <stdio.h>
int main() {
 float16_t a = 5.5f;
 float16_t b = 3.5f;
 uint16_t result = vcgth_f16(a, b);
 printf("%u\n", result);

 return 0;
}

Prototypes

Assembly Instruction:
FCMGT
Usage:
uint16_t result = vcgth_f16( float16_t a, float16_t b )
Performance Metrics:
📊 Unlock Performance Insights

Get access to detailed performance metrics including latency, throughput, and CPU-specific benchmarks for this intrinsic.

SIMD Intrinsics Summary
SIMD Engines: 6
C Intrinsics: 10444
NEON: 4353
AVX2: 405
AVX512: 4717
SSE4.2: 598
VSX: 192
IBM-Z: 179