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

Method dot

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

DOT

Source from the content-addressed store, hash-verified

1997
1998//DOT
1999float
2000clMath::blas::dot(
2001 size_t N,
2002 float *X,
2003 size_t offx,
2004 int incx,
2005 float *Y,
2006 size_t offy,
2007 int incy)
2008 {
2009
2010 return blasSdot( N, X, offx, incx, Y, offy, incy );
2011 }
2012
2013double
2014clMath::blas::dot(

Callers

nothing calls this directly

Calls 4

blasSdotFunction · 0.85
blasDdotFunction · 0.85
blasCdotuFunction · 0.85
blasZdotuFunction · 0.85

Tested by

no test coverage detected