_mm256_blendv_ps
Classification
AVX_ALL, Swizzle, CPUID Test: AVX
Header File
immintrin.h
Instruction
VBLENDVPS ymm, ymm, ymm, ymm
Synopsis
 _mm256_blendv_ps(__m256 a, __m256 b, __m256 mask);
Description
Blend packed single-precision (32-bit) floating-point elements from "a" and "b" using "mask", and store the results in "dst".
Operation
FOR j := 0 to 7
	i := j*32
	IF mask[i+31]
		dst[i+31:i] := b[i+31:i]
	ELSE
		dst[i+31:i] := a[i+31:i]
	FI
ENDFOR
dst[MAX:256] := 0