vminq_f64ADD TO COMPARE ADDED TO COMPARE
Arm 64-bit (64 bits)/ NEON
View official documentation
Purpose:
VMIN compares corresponding elements in two vectors, and returns the smaller of each pair.
Result:
float64x2_t
Example:
#include <arm_neon.h>
#include <stdio.h>
int main() {
float64x2_t valueA = {
1.5, 3.2
};
float64x2_t valueB = {
2.3, 2.1
};
float64x2_t result = vminq_f64(valueA, valueB);
printf("Result: [%f, %f]\n", vgetq_lane_f64(result, 0), vgetq_lane_f64(result, 1));
return 0;
}
Prototypes
Assembly Instruction:
FMIN
Usage:
float64x2_t result =
vminq_f64(
float64x2_t a, float64x2_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 |