libflame  12600
Functions
bl1_allocm.c File Reference

(r12600)

Functions

void * bl1_vallocm (unsigned int m, unsigned int n, unsigned int elem_size)
int * bl1_iallocm (unsigned int m, unsigned int n)
float * bl1_sallocm (unsigned int m, unsigned int n)
double * bl1_dallocm (unsigned int m, unsigned int n)
scomplexbl1_callocm (unsigned int m, unsigned int n)
dcomplexbl1_zallocm (unsigned int m, unsigned int n)

Function Documentation

scomplex* bl1_callocm ( unsigned int  m,
unsigned int  n 
)
double* bl1_dallocm ( unsigned int  m,
unsigned int  n 
)

Referenced by bl1_dcreate_contigm(), bl1_dcreate_contigmr(), bl1_dcreate_contigmt(), bl1_dgemm(), bl1_dsymm(), bl1_dsyr2k(), bl1_dtrmmsx(), and bl1_dtrsmsx().

{
    return ( double* ) BLIS1_MALLOC( m * n * sizeof( double ) );
}
int* bl1_iallocm ( unsigned int  m,
unsigned int  n 
)
{
    return ( int* ) BLIS1_MALLOC( m * n * sizeof( int ) );
}
float* bl1_sallocm ( unsigned int  m,
unsigned int  n 
)

Referenced by bl1_screate_contigm(), bl1_screate_contigmr(), bl1_screate_contigmt(), bl1_sgemm(), bl1_ssymm(), bl1_ssyr2k(), bl1_strmmsx(), and bl1_strsmsx().

{
    return ( float* ) BLIS1_MALLOC( m * n * sizeof( float ) );
}
void* bl1_vallocm ( unsigned int  m,
unsigned int  n,
unsigned int  elem_size 
)
{
    return ( void* ) BLIS1_MALLOC( m * n * elem_size );
}
dcomplex* bl1_zallocm ( unsigned int  m,
unsigned int  n 
)