SYR - Symmetric rank 1 update

pyclblas.clblasDsyr(order, uplo, N, alpha, X, offx, incx, A, offa, lda, commandQueues, eventWaitList)

wraps: clblasDsyr

Symmetric rank 1 operation with a general triangular matrix and double elements. Symmetric rank 1 operation:

  • ( A ← α x xT+ 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 (float [in]) – The factor of matrix A.
  • X (pyopencl.Buffer [in]) – Buffer object storing vector X.
  • offx (int [in]) – Offset of first element of vector X in buffer object.
  • incx (int [in]) – Increment for the elements of X. Must not be zero.
  • A (pyopencl.Buffer [out]) – Buffer object storing matrix A.
  • offa (int [in]) – Offset of first element of matrix A in buffer object.
  • lda (int [in]) – Leading dimension of matrix A. It cannot be less than N.
  • 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.clblasSsyr(order, uplo, N, alpha, X, offx, incx, A, offa, lda, commandQueues, eventWaitList)

wraps: clblasSsyr

Symmetric rank 1 operation with a general triangular matrix and float elements. Symmetric rank 1 operation:

  • ( A ← α x xT+ 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 (float [in]) – The factor of matrix A.
  • X (pyopencl.Buffer [in]) – Buffer object storing vector X.
  • offx (int [in]) – Offset of first element of vector X in buffer object.
  • incx (int [in]) – Increment for the elements of X. Must not be zero.
  • A (pyopencl.Buffer [out]) – Buffer object storing matrix A.
  • offa (int [in]) – Offset of first element of matrix A in buffer object.
  • lda (int [in]) – Leading dimension of matrix A. It cannot be less than N.
  • 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.