libflame
12600
|
Functions | |
void | bl1_isetm (int m, int n, int *sigma, int *a, int a_rs, int a_cs) |
void | bl1_ssetm (int m, int n, float *sigma, float *a, int a_rs, int a_cs) |
void | bl1_dsetm (int m, int n, double *sigma, double *a, int a_rs, int a_cs) |
void | bl1_csetm (int m, int n, scomplex *sigma, scomplex *a, int a_rs, int a_cs) |
void | bl1_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_Bsvd_ext_opc_var1(), FLA_Bsvd_ext_ops_var1(), FLA_Bsvd_v_opc_var1(), FLA_Bsvd_v_ops_var1(), FLA_Hess_UT_step_ofc_var4(), FLA_Hess_UT_step_opc_var4(), FLA_Hess_UT_step_opc_var5(), FLA_Set(), FLA_Tridiag_UT_l_step_ofc_var3(), and FLA_Tridiag_UT_l_step_opc_var3().
void bl1_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_Set(), 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 bl1_isetm | ( | int | m, |
int | n, | ||
int * | sigma, | ||
int * | a, | ||
int | a_rs, | ||
int | a_cs | ||
) |
Referenced by FLA_Set().
{ int* 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 bl1_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_Set(), 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_Bsvd_ext_opd_var1(), FLA_Bsvd_ext_opz_var1(), FLA_Bsvd_v_opd_var1(), FLA_Bsvd_v_opd_var2(), FLA_Bsvd_v_opz_var1(), FLA_Bsvd_v_opz_var2(), FLA_Hess_UT_step_ofz_var4(), FLA_Hess_UT_step_opz_var4(), FLA_Hess_UT_step_opz_var5(), FLA_Set(), FLA_Tevd_n_opz_var1(), FLA_Tevd_v_opd_var1(), FLA_Tevd_v_opd_var2(), FLA_Tevd_v_opz_var1(), FLA_Tevd_v_opz_var2(), FLA_Tridiag_UT_l_step_ofz_var3(), and FLA_Tridiag_UT_l_step_opz_var3().