.. _oneapi-mkl-stats-central_sum-with-user-provided-mean: oneapi::mkl::stats::central_sum with User-provided Mean ======================================================= .. contents:: :local: :depth: 1 Description *********** Entry point to compute arrays of central sums up to the 4th order with mean provided by the user. API *** Syntax ------ **Buffer API** .. code-block:: template void central_sum(sycl::queue& queue, sycl::buffer mean, const dataset>& data, sycl::buffer central_sum_2, sycl::buffer central_sum_3 = {0}, sycl::buffer central_sum_4 = {0}); **USM API** .. code-block:: template sycl::event central_sum(sycl::queue& queue, Type* mean, const dataset& data, Type* central_sum_2, Type* central_sum_3 = nullptr, Type* central_sum_4 = nullptr, const std::vector &dependencies = {});; Include Files ------------- - oneapi/mkl/stats.hpp Template Parameters ------------------- .. tabularcolumns:: |\Y{0.5}|\Y{0.5}| .. list-table:: :header-rows: 0 * - \ ``oneapi::mkl::stats::method Method = oneapi::mkl::stats::method::fast``\ - Computation method. The specific values are as follows: \ ``oneapi::mkl::stats::method::fast``\ Input Parameters ---------------- .. tabularcolumns:: |\Y{0.2}|\Y{0.4}|\Y{0.4}| .. list-table:: :header-rows: 1 * - Name - Type - Description * - queue - \ ``sycl::queue&``\ - Valid ``sycl::queue``, calls of the ``oneapi::mkl::stats::central_sum() routine`` submits kernels in this queue. * - data - \ ``const dataset&``\ - Dataset which is used for estimates computation. **Buffer API** .. list-table:: :header-rows: 1 * - Name - Type - Description * - mean - \ ``sycl::buffer``\ - \ ``sycl::buffer`` to the array of mean values provided by the user. **USM API** .. list-table:: :header-rows: 1 * - Name - Type - Description * - mean - \ ``Type*``\ - Pointer to the output array of mean values provided by the user. Output Parameters ----------------- **Buffer API** .. list-table:: :header-rows: 1 * - Name - Type - Description * - central_sum_2 - \ ``sycl::buffer``\ - \ ``sycl::buffer`` to the output array of central sums of the 2nd order. * - central_sum_3 - \ ``sycl::buffer``\ - \ ``sycl::buffer`` to the output array of central sums of the 3rd order. * - central_sum_4 - \ ``sycl::buffer``\ - \ ``sycl::buffer`` to the output array of central sums of the 4th order. **USM API** .. list-table:: :header-rows: 1 * - Name - Type - Description * - central_sum_2 - \ ``Type*``\ - Pointer to the output array of central sums of the 2nd order. * - central_sum_3 - \ ``Type*``\ - Pointer to the output array of central sums of the 3rd order. * - central_sum_4 - \ ``Type*``\ - Pointer to the output array of central sums of the 4th order. * - event - \ ``sycl::event``\ - Function returns event after submitting task in ``sycl::queue.``\