libflame revision_anchor
|
Functions | |
void | bli_ssetm (int m, int n, float *sigma, float *a, int a_rs, int a_cs) |
void | bli_dsetm (int m, int n, double *sigma, double *a, int a_rs, int a_cs) |
void | bli_csetm (int m, int n, scomplex *sigma, scomplex *a, int a_rs, int a_cs) |
void | bli_zsetm (int m, int n, dcomplex *sigma, dcomplex *a, int a_rs, int a_cs) |
References scomplex::imag, and scomplex::real.
Referenced by FLA_Bidiag_UT_u_step_ofc_var4(), FLA_Bidiag_UT_u_step_opc_var4(), FLA_Bidiag_UT_u_step_opc_var5(), FLA_Hess_UT_step_ofc_var4(), FLA_Hess_UT_step_opc_var4(), FLA_Hess_UT_step_opc_var5(), FLA_Tridiag_UT_l_step_ofc_var3(), and FLA_Tridiag_UT_l_step_opc_var3().
void bli_dsetm | ( | int | m, |
int | n, | ||
double * | sigma, | ||
double * | a, | ||
int | a_rs, | ||
int | a_cs | ||
) |
Referenced by FLA_Bidiag_UT_u_step_ofd_var4(), FLA_Bidiag_UT_u_step_opd_var4(), FLA_Bidiag_UT_u_step_opd_var5(), FLA_Hess_UT_step_ofd_var4(), FLA_Hess_UT_step_opd_var4(), FLA_Hess_UT_step_opd_var5(), FLA_Tridiag_UT_l_step_ofd_var3(), and FLA_Tridiag_UT_l_step_opd_var3().
{ double* alpha; int i, j; for ( j = 0; j < n; ++j ) { for ( i = 0; i < m; ++i ) { alpha = a + i*a_rs + j*a_cs; *alpha = *sigma; } } }
void bli_ssetm | ( | int | m, |
int | n, | ||
float * | sigma, | ||
float * | a, | ||
int | a_rs, | ||
int | a_cs | ||
) |
Referenced by FLA_Bidiag_UT_u_step_ofs_var4(), FLA_Bidiag_UT_u_step_ops_var4(), FLA_Bidiag_UT_u_step_ops_var5(), FLA_Hess_UT_step_ofs_var4(), FLA_Hess_UT_step_ops_var4(), FLA_Hess_UT_step_ops_var5(), FLA_Tridiag_UT_l_step_ofs_var3(), and FLA_Tridiag_UT_l_step_ops_var3().
{ float* alpha; int i, j; for ( j = 0; j < n; ++j ) { for ( i = 0; i < m; ++i ) { alpha = a + i*a_rs + j*a_cs; *alpha = *sigma; } } }
References dcomplex::imag, and dcomplex::real.
Referenced by FLA_Bidiag_UT_u_step_ofz_var4(), FLA_Bidiag_UT_u_step_opz_var4(), FLA_Bidiag_UT_u_step_opz_var5(), FLA_Hess_UT_step_ofz_var4(), FLA_Hess_UT_step_opz_var4(), FLA_Hess_UT_step_opz_var5(), FLA_Tridiag_UT_l_step_ofz_var3(), and FLA_Tridiag_UT_l_step_opz_var3().