Skip to content

Commit fa4baa1

Browse files
antonwolfyvtavana
andauthored
Apply suggestions from code review
Co-authored-by: Vahid Tavanashad <120411540+vtavana@users.noreply.github.com>
1 parent 1605314 commit fa4baa1

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dpnp/backend/extensions/vm/arg.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void init_arg(py::module_ m)
118118
};
119119
m.def("_arg", arg_pyapi,
120120
"Call `arg` function from OneMKL VM library to compute "
121-
"the inverse tangent of vector elements",
121+
"the argument of vector elements",
122122
py::arg("sycl_queue"), py::arg("src"), py::arg("dst"),
123123
py::arg("depends") = py::list());
124124

dpnp/backend/extensions/vm/i0.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void init_i0(py::module_ m)
118118
};
119119
m.def("_i0", i0_pyapi,
120120
"Call `i0` function from OneMKL VM library to compute "
121-
"the inverse tangent of vector elements",
121+
"the element-wise regular modified cylindrical Bessel function of order 0",
122122
py::arg("sycl_queue"), py::arg("src"), py::arg("dst"),
123123
py::arg("depends") = py::list());
124124

dpnp/backend/extensions/vm/inv.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,7 @@ void init_inv(py::module_ m)
118118
};
119119
m.def("_inv", inv_pyapi,
120120
"Call `inv` function from OneMKL VM library to compute "
121-
"the inverse tangent of vector elements",
121+
"the element-wise multiplicative inverse (or reciprocal) of vector elements",
122122
py::arg("sycl_queue"), py::arg("src"), py::arg("dst"),
123123
py::arg("depends") = py::list());
124124

0 commit comments

Comments
 (0)