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

vminq_f32
ADD TO COMPARE ADDED TO COMPARE

 Arm 64-bit (64 bits)/ NEON  View official documentation
 Location: Math Functions  >  Vector Minimum
 Supported Architectures: v7, A32, A64
Purpose:

VMIN compares corresponding elements in two vectors, and returns the smaller of each pair.

Result:

float32x4_t

Example:
#include <arm_neon.h>
#include <stdio.h>
int main() {
 float a_array[4] = {
  1.0f, 2.0f, 3.0f, 4.0f
 };
 float b_array[4] = {
  4.0f, 3.0f, 2.0f, 1.0f
 };
 float32x4_t a = vld1q_f32(a_array);
 float32x4_t b = vld1q_f32(b_array);
 float32x4_t result = vminq_f32(a, b);
 float result_array[4];
 vst1q_f32(result_array, result);
 printf("Result: %f, %f, %f, %f\n", result_array[0], result_array[1], result_array[2], result_array[3]);

 return 0;
}

Prototypes

Assembly Instruction:
FMIN
Usage:
float32x4_t result = vminq_f32( float32x4_t a, float32x4_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