MCPcopy Create free account
hub / github.com/clMathLibraries/clBLAS / clblasFillMatrix

Function clblasFillMatrix

src/library/blas/fill.cc:225–244  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

223
224extern "C"
225clblasStatus clblasFillMatrix( clblasOrder order,
226 size_t element_size,
227 cl_mem A, size_t offA, size_t ldA,
228 size_t sxA, size_t syA,
229 const void *host,
230 cl_command_queue command_queue,
231 cl_uint numEventsInWaitList,
232 const cl_event *eventWaitList)
233{
234 return clblasFillSubMatrix( order,
235 element_size,
236 A, offA, ldA,
237 sxA, syA,
238 0, 0,
239 sxA, syA,
240 host,
241 command_queue,
242 numEventsInWaitList,
243 eventWaitList) ;
244}
245
246
247extern "C"

Callers

nothing calls this directly

Calls 1

clblasFillSubMatrixFunction · 0.85

Tested by

no test coverage detected