_mm_ceil_ss
Classification
SSE_ALL, Special Math Functions, CPUID Test: SSE4.1
Header File
smmintrin.h
Instruction
ROUNDSS xmm, xmm, imm8
Synopsis
 _mm_ceil_ss(__m128 a, __m128 b);
Description
Round the lower single-precision (32-bit) floating-point element in "b" up to an integer value, store the result as a single-precision floating-point element in the lower element of "dst", and copy the upper 3 packed elements from "a" to the upper elements of "dst".
Operation
dst[31:0] := CEIL(b[31:0])
dst[127:32] := a[127:32]