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

Function zdotu

src/tests/correctness/blas-lapack.c:664–677  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

662}
663
664doublecomplex zdotu( int n, doublecomplex *x, int incx, doublecomplex *y, int incy)
665{
666 doublecomplex ans;
667
668 #if defined( _WIN32 ) || defined( _WIN64 )
669 ans = zdotu_(&n, x, &incx, y, &incy);
670 #elif defined(__APPLE__)
671 cblas_zdotu_sub(n, x, incx, y, incy, &ans);
672 #else
673 ans = zdotu_(&n, x, &incx, y, &incy);
674 #endif
675
676 return ans;
677}
678
679complex cdotc( int n, complex *x, int incx, complex *y, int incy)
680{

Callers 1

blasZdotuFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected