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

Function zdotc

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

Source from the content-addressed store, hash-verified

692}
693
694doublecomplex zdotc( int n, doublecomplex *x, int incx, doublecomplex *y, int incy)
695{
696 doublecomplex ans;
697
698 #if defined( _WIN32 ) || defined( _WIN64 )
699 ans = zdotc_(&n, x, &incx, y, &incy);
700 #elif defined(__APPLE__)
701 cblas_zdotc_sub(n, x, incx, y, incy, &ans);
702 #else
703 ans = zdotc_(&n, x, &incx, y, &incy);
704 #endif
705
706 return ans;
707}
708
709void scopy( int n, float *x, int incx, float *y, int incy)
710{

Callers 1

blasZdotcFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected