Skip to content

Commit a06d785

Browse files
add ctest for srotm and modified ctest for srot.
make sure that test cases cover all code path when kernel uses looping unrolling.
1 parent af8a619 commit a06d785

2 files changed

Lines changed: 209 additions & 168 deletions

File tree

ctest/c_sblas1.c

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,13 @@ void F77_srotg( float *a, float *b, float *c, float *s)
5555
return;
5656
}
5757

58+
void F77_srotm(blasint *N, float *X, blasint *incX, float *Y, blasint *incY,
59+
float *param)
60+
{
61+
cblas_srotm(*N, X, *incX, Y, *incY, param);
62+
return;
63+
}
64+
5865
void F77_srot( blasint *N, float *X, blasint *incX, float *Y,
5966
blasint *incY, const float *c, const float *s)
6067
{

0 commit comments

Comments
 (0)