diff --git a/source/elements/oneMKL/source/domains/spblas/matrixinit.rst b/source/elements/oneMKL/source/domains/spblas/matrixinit.rst index 5c8d13409..66db35082 100644 --- a/source/elements/oneMKL/source/domains/spblas/matrixinit.rst +++ b/source/elements/oneMKL/source/domains/spblas/matrixinit.rst @@ -24,20 +24,23 @@ The oneapi::mkl::sparse::init_matrix_handle function initializes the namespace oneapi::mkl::sparse { - void init_matrix_handle (oneapi::mkl::sparse::matrix_handle_t *p_handle); + void init_matrix_handle (sycl::queue &queue, + oneapi::mkl::sparse::matrix_handle_t *p_handle); } - .. container:: section + .. rubric:: Input parameters + queue + The SYCL command queue which will be used for SYCL kernels execution. + p_handle The address of the sparse::matrix_handle_t ``p_handle`` object to be initialized. This initialization routine must only be called on an uninitialized matrix_handle_t object. - .. container:: section .. rubric:: Output parameters diff --git a/source/elements/oneMKL/source/domains/spblas/releasematrixhandle.rst b/source/elements/oneMKL/source/domains/spblas/releasematrixhandle.rst index fe7bd0592..0cfd90e77 100644 --- a/source/elements/oneMKL/source/domains/spblas/releasematrixhandle.rst +++ b/source/elements/oneMKL/source/domains/spblas/releasematrixhandle.rst @@ -47,7 +47,7 @@ before releasing any data in case of USM. dependencies List of events that ``p_handle`` depends on. - The call waits on the events(if any) before resetting the ``p_handle`` to default values. + The call waits on the events (if any) before resetting the ``p_handle`` to default values. .. container:: section