libflame revision_anchor
Functions
bli_constants.c File Reference

(r)

Functions

float bli_s2 (void)
double bli_d2 (void)
scomplex bli_c2 (void)
dcomplex bli_z2 (void)
float bli_s1 (void)
double bli_d1 (void)
scomplex bli_c1 (void)
dcomplex bli_z1 (void)
float bli_s1h (void)
double bli_d1h (void)
scomplex bli_c1h (void)
dcomplex bli_z1h (void)
float bli_s0 (void)
double bli_d0 (void)
scomplex bli_c0 (void)
dcomplex bli_z0 (void)
float bli_sm1h (void)
double bli_dm1h (void)
scomplex bli_cm1h (void)
dcomplex bli_zm1h (void)
float bli_sm1 (void)
double bli_dm1 (void)
scomplex bli_cm1 (void)
dcomplex bli_zm1 (void)
float bli_sm2 (void)
double bli_dm2 (void)
scomplex bli_cm2 (void)
dcomplex bli_zm2 (void)

Function Documentation

scomplex bli_c0 ( void  )

References bli_s0(), scomplex::imag, and scomplex::real.

Referenced by bli_cgemm(), bli_cgemv(), bli_chemm(), bli_chemv(), bli_crandmr(), and bli_csymm().

{
    scomplex x;
    x.real = bli_s0();
    x.imag = bli_s0();
    return x;
}
scomplex bli_c1 ( void  )
scomplex bli_c1h ( void  )

References bli_s0(), bli_s1h(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bli_s1h();
    x.imag = bli_s0();
    return x;
}
scomplex bli_c2 ( void  )

References bli_s0(), bli_s2(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bli_s2();
    x.imag = bli_s0();
    return x;
}
scomplex bli_cm1 ( void  )

References bli_s0(), bli_sm1(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bli_sm1();
    x.imag = bli_s0();
    return x;
}
scomplex bli_cm1h ( void  )

References bli_s0(), bli_sm1h(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bli_sm1h();
    x.imag = bli_s0();
    return x;
}
scomplex bli_cm2 ( void  )

References bli_s0(), bli_sm2(), scomplex::imag, and scomplex::real.

{
    scomplex x;
    x.real = bli_sm2();
    x.imag = bli_s0();
    return x;
}
double bli_d0 ( void  )
double bli_d1 ( void  )

Referenced by bli_dgemm(), bli_drandmr(), bli_dsymm(), bli_dtrmmsx(), bli_dtrsmsx(), and bli_z1().

{
    double x;
    x = 1.0;
    return x;
}
double bli_d1h ( void  )

Referenced by bli_z1h().

{
    double x;
    x = 0.5;
    return x;
}
double bli_d2 ( void  )

Referenced by bli_z2().

{
    double x;
    x = 2.0;
    return x;
}
double bli_dm1 ( void  )

Referenced by bli_zconjm(), bli_zconjmr(), bli_zconjv(), and bli_zm1().

{
    double x;
    x = -1.0;
    return x;
}
double bli_dm1h ( void  )

Referenced by bli_zm1h().

{
    double x;
    x = -0.5;
    return x;
}
double bli_dm2 ( void  )

Referenced by bli_zm2().

{
    double x;
    x = -2.0;
    return x;
}
float bli_s0 ( void  )
float bli_s1 ( void  )

Referenced by bli_c1(), bli_sgemm(), bli_srandmr(), bli_ssymm(), bli_strmmsx(), and bli_strsmsx().

{
    float x;
    x = 1.0F;
    return x;
}
float bli_s1h ( void  )

Referenced by bli_c1h().

{
    float x;
    x = 0.5F;
    return x;
}
float bli_s2 ( void  )

Referenced by bli_c2().

{
    float x;
    x = 2.0F;
    return x;
}
float bli_sm1 ( void  )

Referenced by bli_cconjm(), bli_cconjmr(), bli_cconjv(), and bli_cm1().

{
    float x;
    x = -1.0F;
    return x;
}
float bli_sm1h ( void  )

Referenced by bli_cm1h().

{
    float x;
    x = -0.5F;
    return x;
}
float bli_sm2 ( void  )

Referenced by bli_cm2().

{
    float x;
    x = -2.0F;
    return x;
}
dcomplex bli_z0 ( void  )

References bli_d0(), dcomplex::imag, and dcomplex::real.

Referenced by bli_zgemm(), bli_zgemv(), bli_zhemm(), bli_zhemv(), bli_zrandmr(), and bli_zsymm().

{
    dcomplex x;
    x.real = bli_d0();
    x.imag = bli_d0();
    return x;
}
dcomplex bli_z1 ( void  )
dcomplex bli_z1h ( void  )

References bli_d0(), bli_d1h(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bli_d1h();
    x.imag = bli_d0();
    return x;
}
dcomplex bli_z2 ( void  )

References bli_d0(), bli_d2(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bli_d2();
    x.imag = bli_d0();
    return x;
}
dcomplex bli_zm1 ( void  )

References bli_d0(), bli_dm1(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bli_dm1();
    x.imag = bli_d0();
    return x;
}
dcomplex bli_zm1h ( void  )

References bli_d0(), bli_dm1h(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bli_dm1h();
    x.imag = bli_d0();
    return x;
}
dcomplex bli_zm2 ( void  )

References bli_d0(), bli_dm2(), dcomplex::imag, and dcomplex::real.

{
    dcomplex x;
    x.real = bli_dm2();
    x.imag = bli_d0();
    return x;
}