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

Method axpy

src/tests/clBLAS-wrapper.cpp:3068–3086  ·  view source on GitHub ↗

axpy calls

Source from the content-addressed store, hash-verified

3066
3067//axpy calls
3068clblasStatus
3069 clMath::clblas::axpy(
3070 size_t N,
3071 cl_float alpha,
3072 cl_mem X,
3073 size_t offBX,
3074 int incx,
3075 cl_mem Y,
3076 size_t offCY,
3077 int incy,
3078 cl_uint numCommandQueues,
3079 cl_command_queue *commandQueues,
3080 cl_uint numEventsInWaitList,
3081 const cl_event *eventWaitList,
3082 cl_event *events)
3083{
3084 return clblasSaxpy(N, alpha, X, offBX, incx, Y, offCY, incy, numCommandQueues,
3085 commandQueues, numEventsInWaitList, eventWaitList, events);
3086}
3087
3088clblasStatus
3089 clMath::clblas::axpy(

Callers

nothing calls this directly

Calls 4

clblasSaxpyFunction · 0.85
clblasDaxpyFunction · 0.85
clblasCaxpyFunction · 0.85
clblasZaxpyFunction · 0.85

Tested by

no test coverage detected