|
libflame
revision_anchor
|
Functions | |
| void | bli_sswapv (int n, float *x, int incx, float *y, int incy) |
| void | bli_dswapv (int n, double *x, int incx, double *y, int incy) |
| void | bli_cswapv (int n, scomplex *x, int incx, scomplex *y, int incy) |
| void | bli_zswapv (int n, dcomplex *x, int incx, dcomplex *y, int incy) |
| void bli_cswapv | ( | int | n, |
| scomplex * | x, | ||
| int | incx, | ||
| scomplex * | y, | ||
| int | incy | ||
| ) |
References bli_cswap(), and bli_zero_dim1().
Referenced by FLA_Apply_pivots_macro_external().
{
// Return early if possible.
if ( bli_zero_dim1( n ) ) return;
bli_cswap( n,
x, incx,
y, incy );
}
| void bli_dswapv | ( | int | n, |
| double * | x, | ||
| int | incx, | ||
| double * | y, | ||
| int | incy | ||
| ) |
References bli_dswap(), and bli_zero_dim1().
Referenced by FLA_Apply_pivots_macro_external(), FLA_Sort_evd_b_opd(), FLA_Sort_evd_f_opd(), FLA_Sort_svd_b_opd(), and FLA_Sort_svd_f_opd().
{
// Return early if possible.
if ( bli_zero_dim1( n ) ) return;
bli_dswap( n,
x, incx,
y, incy );
}
| void bli_sswapv | ( | int | n, |
| float * | x, | ||
| int | incx, | ||
| float * | y, | ||
| int | incy | ||
| ) |
References bli_sswap(), and bli_zero_dim1().
Referenced by FLA_Apply_pivots_macro_external().
{
// Return early if possible.
if ( bli_zero_dim1( n ) ) return;
bli_sswap( n,
x, incx,
y, incy );
}
| void bli_zswapv | ( | int | n, |
| dcomplex * | x, | ||
| int | incx, | ||
| dcomplex * | y, | ||
| int | incy | ||
| ) |
References bli_zero_dim1(), and bli_zswap().
Referenced by FLA_Apply_pivots_macro_external(), FLA_Sort_evd_b_opz(), FLA_Sort_evd_f_opz(), FLA_Sort_svd_b_opz(), and FLA_Sort_svd_f_opz().
{
// Return early if possible.
if ( bli_zero_dim1( n ) ) return;
bli_zswap( n,
x, incx,
y, incy );
}
1.7.6.1