Skip to content

Commit

Permalink
Reworking matrix generators.
Browse files Browse the repository at this point in the history
  • Loading branch information
TeachRaccooon committed Nov 20, 2023
1 parent 56574e3 commit 28bcd20
Show file tree
Hide file tree
Showing 6 changed files with 118 additions and 116 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
Loading

0 comments on commit 28bcd20

Please sign in to comment.