SVML-Probability/Statistics-YMM#

_mm256_cdfnorm_pd#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256d

Param Types:

__m256d a

Param ETypes:

FP64 a

__m256d _mm256_cdfnorm_pd(__m256d a);

Intel Description

Compute the cumulative distribution function of packed double-precision (64-bit) floating-point elements in “a” using the normal distribution, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 3
        i := j*64
        dst[i+63:i] := CDFNormal(a[i+63:i])
ENDFOR
dst[MAX:256] := 0

_mm256_cdfnorm_ps#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256

Param Types:

__m256 a

Param ETypes:

FP32 a

__m256 _mm256_cdfnorm_ps(__m256 a);

Intel Description

Compute the cumulative distribution function of packed single-precision (32-bit) floating-point elements in “a” using the normal distribution, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 7
        i := j*32
        dst[i+31:i] := CDFNormal(a[i+31:i])
ENDFOR
dst[MAX:256] := 0

_mm256_cdfnorminv_pd#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256d

Param Types:

__m256d a

Param ETypes:

FP64 a

__m256d _mm256_cdfnorminv_pd(__m256d a);

Intel Description

Compute the inverse cumulative distribution function of packed double-precision (64-bit) floating-point elements in “a” using the normal distribution, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 3
        i := j*64
        dst[i+63:i] := InverseCDFNormal(a[i+63:i])
ENDFOR
dst[MAX:256] := 0

_mm256_cdfnorminv_ps#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256

Param Types:

__m256 a

Param ETypes:

FP32 a

__m256 _mm256_cdfnorminv_ps(__m256 a);

Intel Description

Compute the inverse cumulative distribution function of packed single-precision (32-bit) floating-point elements in “a” using the normal distribution, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 7
        i := j*32
        dst[i+31:i] := InverseCDFNormal(a[i+31:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erf_pd#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256d

Param Types:

__m256d a

Param ETypes:

FP64 a

__m256d _mm256_erf_pd(__m256d a);

Intel Description

Compute the error function of packed double-precision (64-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 3
        i := j*64
        dst[i+63:i] := ERF(a[i+63:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erf_ps#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256

Param Types:

__m256 a

Param ETypes:

FP32 a

__m256 _mm256_erf_ps(__m256 a);

Intel Description

Compute the error function of packed single-precision (32-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 7
        i := j*32
        dst[i+31:i] := ERF(a[i+31:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erfc_pd#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256d

Param Types:

__m256d a

Param ETypes:

FP64 a

__m256d _mm256_erfc_pd(__m256d a);

Intel Description

Compute the complementary error function of packed double-precision (64-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 3
        i := j*64
        dst[i+63:i] := 1.0 - ERF(a[i+63:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erfc_ps#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256

Param Types:

__m256 a

Param ETypes:

FP32 a

__m256 _mm256_erfc_ps(__m256 a);

Intel Description

Compute the complementary error function of packed single-precision (32-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 7
        i := j*32
        dst[i+63:i] := 1.0 - ERF(a[i+31:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erfcinv_pd#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256d

Param Types:

__m256d a

Param ETypes:

FP64 a

__m256d _mm256_erfcinv_pd(__m256d a);

Intel Description

Compute the inverse complementary error function of packed double-precision (64-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 3
        i := j*64
        dst[i+63:i] := 1.0 / (1.0 - ERF(a[i+63:i]))
ENDFOR
dst[MAX:256] := 0

_mm256_erfcinv_ps#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256

Param Types:

__m256 a

Param ETypes:

FP32 a

__m256 _mm256_erfcinv_ps(__m256 a);

Intel Description

Compute the inverse complementary error function of packed single-precision (32-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 7
        i := j*32
        dst[i+63:i] := 1.0 / (1.0 - ERF(a[i+31:i]))
ENDFOR
dst[MAX:256] := 0

_mm256_erfinv_pd#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256d

Param Types:

__m256d a

Param ETypes:

FP64 a

__m256d _mm256_erfinv_pd(__m256d a);

Intel Description

Compute the inverse error function of packed double-precision (64-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 3
        i := j*64
        dst[i+63:i] := 1.0 / ERF(a[i+63:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erfinv_ps#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256

Param Types:

__m256 a

Param ETypes:

FP32 a

__m256 _mm256_erfinv_ps(__m256 a);

Intel Description

Compute the inverse error function of packed single-precision (32-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 7
        i := j*32
        dst[i+63:i] := 1.0 / ERF(a[i+31:i])
ENDFOR
dst[MAX:256] := 0

_mm256_cdfnorm_ph#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256h

Param Types:

__m256h a

Param ETypes:

FP16 a

__m256h _mm256_cdfnorm_ph(__m256h a);

Intel Description

Compute the cumulative distribution function of packed half-precision (16-bit) floating-point elements in “a” using the normal distribution, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 15
        i := j*16
        dst[i+15:i] := CDFNormal(a[i+15:i])
ENDFOR
dst[MAX:256] := 0

_mm256_cdfnorminv_ph#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256h

Param Types:

__m256h a

Param ETypes:

FP16 a

__m256h _mm256_cdfnorminv_ph(__m256h a);

Intel Description

Compute the inverse cumulative distribution function of packed half-precision (16-bit) floating-point elements in “a” using the normal distribution, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 15
        i := j*16
        dst[i+15:i] := InverseCDFNormal(a[i+15:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erf_ph#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256h

Param Types:

__m256h a

Param ETypes:

FP16 a

__m256h _mm256_erf_ph(__m256h a);

Intel Description

Compute the error function of packed half-precision (16-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 15
        i := j*16
        dst[i+15:i] := ERF(a[i+15:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erfc_ph#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256h

Param Types:

__m256h a

Param ETypes:

FP16 a

__m256h _mm256_erfc_ph(__m256h a);

Intel Description

Compute the complementary error function of packed half-precision (16-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 15
        i := j*16
        dst[i+15:i] := 1.0 - ERF(a[i+15:i])
ENDFOR
dst[MAX:256] := 0

_mm256_erfcinv_ph#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256h

Param Types:

__m256h a

Param ETypes:

FP16 a

__m256h _mm256_erfcinv_ph(__m256h a);

Intel Description

Compute the inverse complementary error function of packed half-precision (16-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 15
        i := j*16
        dst[i+15:i] := 1.0 / (1.0 - ERF(a[i+15:i]))
ENDFOR
dst[MAX:256] := 0

_mm256_erfinv_ph#

Tech:

SVML

Category:

Probability/Statistics

Header:

immintrin.h

Searchable:

SVML-Probability/Statistics-YMM

Register:

YMM 256 bit

Return Type:

__m256h

Param Types:

__m256h a

Param ETypes:

FP16 a

__m256h _mm256_erfinv_ph(__m256h a);

Intel Description

Compute the inverse error function of packed half-precision (16-bit) floating-point elements in “a”, and store the results in “dst”.

Intel Implementation Psudeo-Code

FOR j := 0 to 15
        i := j*16
        dst[i+15:i] := 1.0 / ERF(a[i+15:i])
ENDFOR
dst[MAX:256] := 0