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

_mm512_mul_ps
ADD TO COMPARE ADDED TO COMPARE

 Intel 64-bit (64 bits)/ AVX512  View official documentation
Purpose:
Multiply packed single-precision (32-bit) floating-point elements in "a" and "b", and store the results in "dst".
Result:

__m512

Example:
#include <immintrin.h>
#include <stdio.h>
int main() {
 __m512 a = _mm512_set_ps(1.0f, 2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f,                              9.0f, 10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f, 16.0f);
 __m512 b = _mm512_set_ps(2.0f, 3.0f, 4.0f, 5.0f, 6.0f, 7.0f, 8.0f, 9.0f,                              10.0f, 11.0f, 12.0f, 13.0f, 14.0f, 15.0f, 16.0f, 17.0f);
 __m512 r = _mm512_mul_ps(a, b);
 float* res = (float*)&r;
 for (int i = 0; i < 16; ++i)
  printf("%f ", res[i]);

  return 0;
 }

Prototypes

Assembly Instruction:
vmulps
Usage:
__m512 output = _mm512_mul_ps( __m512 a, __m512 b )
DB statistics
SIMD Engines: 5
C Intrinsics: 10702
NEON: 4232
AVX2: 462
AVX512: 4955
SSE4.2: 652
VSX: 401