Intel® C++ Compiler 16.0 User and Reference Guide

_mm512_set_ps

Sets all elements to specified single-precision floating-point values. There is no corresponding instruction. This intrinsic only applies to Intel® Many Integrated Core Architecture (Intel® MIC Architecture).

Syntax

extern __m512 __cdecl _mm512_set_ps(float e15, float e14, float e13, float e12, float e11, float e10, float e9, float e8, float e7, float e6, float e5, float e4, float e3, float e2, float e1, float e0);

Parameters

e0-e15

single-precision floating-point values

Description

Sets 16 elements of a float32 vector according to values passed as parameters, where the elements v15, v14, v13, v12,...v3, v2, v1, v0 = e15, e14, e13, e12,...e3, e2, e1, e0.

Returns

Returns a float32 vector with 16 elements of specified values e0-e15.