add ctest for drotm and modified ctest for drot.

make sure that test cases cover all code path when kernel uses looping unrolling.
This commit is contained in:
shengyang
2020-03-21 15:58:21 +08:00
parent a06d78556d
commit 50f4fb2fbd
2 changed files with 201 additions and 170 deletions

View File

@@ -53,6 +53,13 @@ void F77_drot( const int *N, double *X, const int *incX, double *Y,
return;
}
void F77_drotm(const int *N, double *X, const int *incX, double *Y,
const int *incY, const double *dparam)
{
cblas_drotm(*N, X, *incX, Y, *incY, dparam);
return;
}
void F77_dscal(const int *N, const double *alpha, double *X,
const int *incX)
{