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

Function clblasWriteSubMatrixAsync

src/library/blas/matrix.c:363–393  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

361}
362
363clblasStatus clblasWriteSubMatrixAsync(
364 clblasOrder order,
365 size_t element_size,
366 const void *A, size_t offA, size_t ldA,
367 size_t nrA, size_t ncA,
368 size_t xA, size_t yA,
369 cl_mem B, size_t offB, size_t ldB,
370 size_t nrB, size_t ncB,
371 size_t xB, size_t yB,
372 size_t nx, size_t ny,
373 cl_command_queue command_queue,
374 cl_uint numEventsInWaitList,
375 const cl_event *eventWaitList,
376 cl_event *event)
377{
378 return _clblasWriteSubMatrix(
379 order,
380 element_size,
381 A, offA, ldA,
382 nrA, ncA,
383 xA, yA,
384 B, offB, ldB,
385 nrB, ncB,
386 xB, yB,
387 nx, ny,
388 command_queue,
389 numEventsInWaitList,
390 eventWaitList,
391 event,
392 CL_FALSE);
393}
394
395
396/*

Callers 1

clblasWriteMatrixAsyncFunction · 0.85

Calls 1

_clblasWriteSubMatrixFunction · 0.85

Tested by

no test coverage detected