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

Method axpy

src/tests/blas-wrapper.cpp:2134–2146  ·  view source on GitHub ↗

axpy calls

Source from the content-addressed store, hash-verified

2132
2133//axpy calls
2134void
2135 clMath::blas::axpy(
2136 size_t N,
2137 float alpha,
2138 const float * X,
2139 size_t offBX,
2140 int incx,
2141 float *Y,
2142 size_t offCY,
2143 int incy)
2144{
2145 return blasSaxpy(N, alpha, X, offBX, incx, Y, offCY, incy);
2146}
2147
2148void
2149 clMath::blas::axpy(

Callers

nothing calls this directly

Calls 4

blasSaxpyFunction · 0.85
blasDaxpyFunction · 0.85
blasCaxpyFunction · 0.85
blasZaxpyFunction · 0.85

Tested by

no test coverage detected