petsc-3.14.6 2021-03-30
Report Typos and Errors

VecViennaCLGetCLMem

Provides access to the the CL buffer inside a Vec.

Synopsis

#include "petscvec.h" 
PETSC_EXTERN PetscErrorCode VecViennaCLGetCLMem(Vec v, PETSC_UINTPTR_T* mem)
Caller should cast (*mem) to (const cl_mem). Caller is responsible for invoking clReleaseMemObject().

The device pointer has to be released by calling VecViennaCLRestoreCLMem(). Upon restoring the vector data the data on the host will be marked as out of date. A subsequent access of the host data will thus incur a data transfer from the device to the host.

Input Parameters

v - the vector

Output Parameters

mem - pointer to the device buffer

See Also

VecViennaCLGetCLContext(), VecViennaCLRestoreCLMem()

Level

intermediate

Location

src/vec/vec/impls/seq/seqviennacl/vecviennacl.cxx
Index of all Vec routines
Table of Contents for all manual pages
Index of all manual pages