Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
TeachRaccooon committed Apr 1, 2024
1 parent 41a8117 commit 9865d28
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions RandLAPACK/drivers/rl_hqrrp.hh
Original file line number Diff line number Diff line change
Expand Up @@ -98,15 +98,15 @@ void _LAPACK_lafrb(
& m_, & n_, & k_, (double *) buff_U, & ldim_U, (double *) buff_T, & ldim_T,
(double *) buff_B, & ldim_B, (double *) buff_W, & ldim_W
#ifdef LAPACK_FORTRAN_STRLEN_END
, 1, 1, 1, 1
//, 1, 1, 1, 1
#endif
);
} else if (typeid(T) == typeid(float)) {
LAPACK_slarfb( & side_, & trans_, & direction_, & storev_,
& m_, & n_, & k_, (float *) buff_U, & ldim_U, (float *) buff_T, & ldim_T,
(float *) buff_B, & ldim_B, (float *) buff_W, & ldim_W
#ifdef LAPACK_FORTRAN_STRLEN_END
, 1, 1, 1, 1
//, 1, 1, 1, 1
#endif
);
} else {
Expand Down Expand Up @@ -136,7 +136,7 @@ void _LAPACK_larf(
(double *) C, & ldc_,
(double *) work
#ifdef LAPACK_FORTRAN_STRLEN_END
, 1
//, 1
#endif
);
} else if (typeid(T) == typeid(float)) {
Expand All @@ -146,7 +146,7 @@ void _LAPACK_larf(
(float *) C, & ldc_,
(float *) work
#ifdef LAPACK_FORTRAN_STRLEN_END
, 1
//, 1
#endif
);
} else {
Expand Down Expand Up @@ -398,7 +398,7 @@ static int64_t NoFLA_QRP_downdate_partial_norms(
char dlmach_param = 'E';
tol3z = sqrt( LAPACK_dlamch( & dlmach_param
#ifdef LAPACK_FORTRAN_STRLEN_END
, 1
//, 1
#endif
) );
ptr_d = buff_d;
Expand Down

0 comments on commit 9865d28

Please sign in to comment.