HPR2 - Hermitian packed matrix rank 2 update

pyclblas.clblasChpr2(order, uplo, N, alpha, X, offx, incx, Y, offy, incy, AP, offa, commandQueues, eventWaitList)

wraps: clblasChpr2

Hermitian rank 2 operation with a general triangular packed-matrix and float-compelx elements. Hermitian rank 2 operation:

  • ( A ← α X YH+ conj( alpha ) Y XH+ A )
Parameters:
  • order (clblasOrder [in]) – Row/column order.
  • uplo (clblasUplo [in]) – The triangle in matrix being referenced.
  • N (int [in]) – Number of columns in matrix A.
  • alpha (complex [in]) – The factor of matrix A.
  • X (pyopencl.Buffer [in]) – Buffer object storing vector X.
  • offx (int [in]) – Offset in number of elements for the first element in vector X.
  • incx (int [in]) – Increment for the elements of X. Must not be zero.
  • Y (pyopencl.Buffer [in]) – Buffer object storing vector Y.
  • offy (int [in]) – Offset in number of elements for the first element in vector Y.
  • incy (int [in]) – Increment for the elements of Y. Must not be zero.
  • AP (pyopencl.Buffer [out]) – Buffer object storing packed-matrix AP.
  • offa (int [in]) – Offset in number of elements for the first element in matrix AP.
  • commandQueues (pyopencl.CommandQueue [in]) – OpenCL command queues. A list, tuple, or single instance of pyopencl.CommandQueue. Must not be None.
  • eventWaitList (pyopencl.Event [in]) – Event wait list. A list, tuple, or single instance of pyopencl.Event. May be None.
Returns:

A tuple of pyopencl.Event instances, one for each commandQueue supplied.

pyclblas.clblasZhpr2(order, uplo, N, alpha, X, offx, incx, Y, offy, incy, AP, offa, commandQueues, eventWaitList)

wraps: clblasZhpr2

Hermitian rank 2 operation with a general triangular packed-matrix and double-compelx elements. Hermitian rank 2 operation:

  • ( A ← α X YH+ conj( alpha ) Y XH+ A )
Parameters:
  • order (clblasOrder [in]) – Row/column order.
  • uplo (clblasUplo [in]) – The triangle in matrix being referenced.
  • N (int [in]) – Number of columns in matrix A.
  • alpha (complex [in]) – The factor of matrix A.
  • X (pyopencl.Buffer [in]) – Buffer object storing vector X.
  • offx (int [in]) – Offset in number of elements for the first element in vector X.
  • incx (int [in]) – Increment for the elements of X. Must not be zero.
  • Y (pyopencl.Buffer [in]) – Buffer object storing vector Y.
  • offy (int [in]) – Offset in number of elements for the first element in vector Y.
  • incy (int [in]) – Increment for the elements of Y. Must not be zero.
  • AP (pyopencl.Buffer [out]) – Buffer object storing packed-matrix AP.
  • offa (int [in]) – Offset in number of elements for the first element in matrix AP.
  • commandQueues (pyopencl.CommandQueue [in]) – OpenCL command queues. A list, tuple, or single instance of pyopencl.CommandQueue. Must not be None.
  • eventWaitList (pyopencl.Event [in]) – Event wait list. A list, tuple, or single instance of pyopencl.Event. May be None.
Returns:

A tuple of pyopencl.Event instances, one for each commandQueue supplied.