SCALAPACK 2.2.2
LAPACK: Linear Algebra PACKage
Loading...
Searching...
No Matches

◆ setmemory()

void setmemory ( float **  adpointer,
Int  blocksize 
)

Definition at line 113 of file psgemr2.c.

114{
115 assert(blocksize >= 0);
116 if (blocksize == 0) {
117 *adpointer = NULL;
118 return;
119 }
120 *adpointer = (float *) mr2d_malloc(
121 blocksize * sizeof(float));
122}
void * mr2d_malloc()
Here is the call graph for this function: