File tree Expand file tree Collapse file tree 1 file changed +7
-0
lines changed
dpnp/backend/extensions/vm Expand file tree Collapse file tree 1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -133,6 +133,7 @@ using ew_cmn_ns::unary_contig_impl_fn_ptr_t;
133133
134134MACRO_DEFINE_IMPL (erf, Erf);
135135MACRO_DEFINE_IMPL (erfc, Erfc);
136+ MACRO_DEFINE_IMPL (erfcx, Erfcx);
136137
137138template <template <typename fnT, typename T> typename factoryT>
138139static void populate (py::module_ m,
@@ -187,5 +188,11 @@ void init_erf_funcs(py::module_ m)
187188 " Call `erfc` function from OneMKL VM library to compute the "
188189 " complementary error function value of vector elements" ,
189190 impl::erfc_contig_dispatch_vector);
191+
192+ impl::populate<impl::ErfcxContigFactory>(
193+ m, " _erfcx" ,
194+ " Call `erfcx` function from OneMKL VM library to compute the scaled "
195+ " complementary error function value of vector elements" ,
196+ impl::erfc_contig_dispatch_vector);
190197}
191198} // namespace dpnp::extensions::vm
You can’t perform that action at this time.
0 commit comments