axpy calls
| 3066 | |
| 3067 | //axpy calls |
| 3068 | clblasStatus |
| 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 | |
| 3088 | clblasStatus |
| 3089 | clMath::clblas::axpy( |
nothing calls this directly
no test coverage detected