diff options
| author | Raghuveer Devulapalli <raghuveer.devulapalli@intel.com> | 2022-01-31 09:32:37 -0800 |
|---|---|---|
| committer | Raghuveer Devulapalli <raghuveer.devulapalli@intel.com> | 2022-02-03 09:53:20 -0800 |
| commit | 413ae9063a0bbde40a8efa80fda50b172201a11c (patch) | |
| tree | 965bc6869e27705985af84b5a04b990c3615f80c /numpy/core/src/common | |
| parent | 8840d950e0eedf2eadb96d9867d8f8341e51aaac (diff) | |
| download | numpy-413ae9063a0bbde40a8efa80fda50b172201a11c.tar.gz | |
ENH: Use SVML for f64 exp and log
Diffstat (limited to 'numpy/core/src/common')
| -rw-r--r-- | numpy/core/src/common/npy_svml.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/numpy/core/src/common/npy_svml.h b/numpy/core/src/common/npy_svml.h index 4292f7090..1111025d7 100644 --- a/numpy/core/src/common/npy_svml.h +++ b/numpy/core/src/common/npy_svml.h @@ -1,5 +1,7 @@ #if NPY_SIMD && defined(NPY_HAVE_AVX512_SKX) && defined(NPY_CAN_LINK_SVML) +extern __m512 __svml_expf16(__m512 x); extern __m512 __svml_exp2f16(__m512 x); +extern __m512 __svml_logf16(__m512 x); extern __m512 __svml_log2f16(__m512 x); extern __m512 __svml_log10f16(__m512 x); extern __m512 __svml_expm1f16(__m512 x); @@ -19,7 +21,9 @@ extern __m512 __svml_asinhf16(__m512 x); extern __m512 __svml_acoshf16(__m512 x); extern __m512 __svml_atanhf16(__m512 x); +extern __m512d __svml_exp8(__m512d x); extern __m512d __svml_exp28(__m512d x); +extern __m512d __svml_log8(__m512d x); extern __m512d __svml_log28(__m512d x); extern __m512d __svml_log108(__m512d x); extern __m512d __svml_expm18(__m512d x); |
