vst1_f32ADD TO COMPARE ADDED TO COMPARE
Arm 64-bit (64 bits)/ NEON
View official documentation
Location:
Memory Operations
>
Vector Store
Purpose:
Stores elements from a 64-bit vector into contiguous memory.
Result:
void
Example:
#include <arm_neon.h>
#include <stdio.h>
int main() {
float32x2_t a = {
1.5f, 2.5f
};
float32_t c[2];
vst1_f32(c, a);
for (int i = 0; i < 2; i++) {
printf("%f ", c[i]);
}
printf("\n");
return 0;
}
Prototypes
Assembly Instruction:
ST1
Usage:
void output =
vst1_f32(
float32_t a, float32x2_t b
)
DB statistics
SIMD Engines: | 5 |
C Intrinsics: | 10702 |
NEON: | 4232 |
AVX2: | 462 |
AVX512: | 4955 |
SSE4.2: | 652 |
VSX: | 401 |