Skip to content

Commit 50f4fb2

Browse files
add ctest for drotm and modified ctest for drot.
make sure that test cases cover all code path when kernel uses looping unrolling.
1 parent a06d785 commit 50f4fb2

2 files changed

Lines changed: 201 additions & 170 deletions

File tree

ctest/c_dblas1.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,13 @@ void F77_drot( const int *N, double *X, const int *incX, double *Y,
5353
return;
5454
}
5555

56+
void F77_drotm(const int *N, double *X, const int *incX, double *Y,
57+
const int *incY, const double *dparam)
58+
{
59+
cblas_drotm(*N, X, *incX, Y, *incY, dparam);
60+
return;
61+
}
62+
5663
void F77_dscal(const int *N, const double *alpha, double *X,
5764
const int *incX)
5865
{

0 commit comments

Comments
 (0)