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

Function clblasFillMatrixAsync

src/library/blas/fill.cc:248–271  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

246
247extern "C"
248clblasStatus clblasFillMatrixAsync( clblasOrder order,
249 size_t element_size,
250 cl_mem A, size_t offA, size_t ldA,
251 size_t sxA, size_t syA,
252 const void *host,
253 cl_command_queue command_queue,
254 cl_uint numEventsInWaitList,
255 const cl_event *eventWaitList,
256 cl_event *event)
257{
258
259 return clblasFillSubMatrixAsync( order,
260 element_size,
261 A, offA, ldA,
262 sxA, syA,
263 0, 0,
264 sxA, syA,
265 host,
266 command_queue,
267 numEventsInWaitList,
268 eventWaitList,
269 event) ;
270
271}
272

Callers

nothing calls this directly

Calls 1

clblasFillSubMatrixAsyncFunction · 0.85

Tested by

no test coverage detected