CPP Implementtaion of dsdot included. Test application refactored to include review comments

Change-Id: Iec0b973c23a2825e61f2ec9da236b3aea327d98a
This commit is contained in:
Chithra Sankar
2019-09-20 11:52:55 +05:30
parent ce0b1caa7f
commit be25ec0065
3 changed files with 42 additions and 40 deletions

View File

@@ -290,16 +290,6 @@ cblas_dot(
{
return cblas_ddot( n, x, incx, y, incy );
}
#if 0
inline double
cblas_dot(
int n,
float const *x, int incx,
float const *y, int incy )
{
return cblas_dsdot( n, x, incx, y, incy );
}
#endif
// -----------------------------------------------------------------------------
inline std::complex<float>
cblas_dotu(