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

Function blasSdot

src/tests/blas.c:4500–4511  ·  view source on GitHub ↗

DOT

Source from the content-addressed store, hash-verified

4498
4499//DOT
4500float
4501blasSdot(
4502 size_t N,
4503 float *X,
4504 size_t offx,
4505 int incx,
4506 float *Y,
4507 size_t offy,
4508 int incy)
4509 {
4510 return sdot((int)N, (X+offx), incx, (Y+offy), incy);
4511 }
4512
4513double
4514blasDdot(

Callers 1

dotMethod · 0.85

Calls 1

sdotFunction · 0.85

Tested by

no test coverage detected