.. _onemkl_blas_dotc: dotc ==== Computes the dot product of two complex vectors, conjugating the first vector. .. _onemkl_blas_dotc_description: .. rubric:: Description The ``dotc`` routines perform a dot product between two complex vectors, conjugating the first of them: .. math:: result = \sum_{i=1}^{n}\overline{X_i}Y_i ``dotc`` supports the following precisions for data. .. list-table:: :header-rows: 1 * - T * - ``std::complex`` * - ``std::complex`` .. _onemkl_blas_dotc_buffer: dotc (Buffer Version) --------------------- .. rubric:: Syntax .. code-block:: cpp namespace oneapi::mkl::blas::column_major { void dotc(sycl::queue &queue, std::int64_t n, sycl::buffer &x, std::int64_t incx, sycl::buffer &y, std::int64_t incy, sycl::buffer &result) } .. code-block:: cpp namespace oneapi::mkl::blas::row_major { void dotc(sycl::queue &queue, std::int64_t n, sycl::buffer &x, std::int64_t incx, sycl::buffer &y, std::int64_t incy, sycl::buffer &result) } .. container:: section .. rubric:: Input Parameters queue The queue where the routine should be executed. n The number of elements in vectors ``x`` and ``y``. x Buffer holding input vector ``x``. The buffer must be of size at least (1 + (``n`` - 1)*abs(``incx``)). See :ref:`matrix-storage` for more details. incx The stride of vector ``x``. y Buffer holding input vector ``y``. The buffer must be of size at least (1 + (``n`` - 1)*abs(``incy``)). See :ref:`matrix-storage` for more details.. incy The stride of vector ``y``. .. container:: section .. rubric:: Output Parameters result The buffer where the result (a scalar) is stored. .. _onemkl_blas_dotc_usm: dotc (USM Version) ------------------ .. rubric:: Syntax .. code-block:: cpp namespace oneapi::mkl::blas::column_major { void dotc(sycl::queue &queue, std::int64_t n, const T *x, std::int64_t incx, const T *y, std::int64_t incy, T *result, const std::vector &dependencies = {}) } .. code-block:: cpp namespace oneapi::mkl::blas::row_major { void dotc(sycl::queue &queue, std::int64_t n, const T *x, std::int64_t incx, const T *y, std::int64_t incy, T *result, const std::vector &dependencies = {}) } .. container:: section .. rubric:: Input Parameters queue The queue where the routine should be executed. n The number of elements in vectors ``x`` and ``y``. x Pointer to input vector ``x``. The array holding the input vector ``x`` must be of size at least (1 + (``n`` - 1)*abs(``incx``)). See :ref:`matrix-storage` for more details. incx The stride of vector ``x``. y Pointer to input vector ``y``. The array holding the input vector ``y`` must be of size at least (1 + (``n`` - 1)*abs(``incy``)). See :ref:`matrix-storage` for more details.. incy The stride of vector ``y``. dependencies List of events to wait for before starting computation, if any. If omitted, defaults to no dependencies. .. container:: section .. rubric:: Output Parameters result The pointer to where the result (a scalar) is stored. .. container:: section .. rubric:: Return Values Output event to wait on to ensure computation is complete. **Parent topic:** :ref:`blas-level-1-routines`