Fix some "malloc of 0 bytes" warnings
This commit was SVN r28713.
Этот коммит содержится в:
родитель
9166a8cc95
Коммит
d1ce64f049
@ -127,20 +127,41 @@ int mca_topo_base_dist_graph_distribute(mca_topo_base_module_t* module,
|
||||
topo->indegree = idx[0].in;
|
||||
topo->outdegree = idx[0].out;
|
||||
topo->weighted = (weights != MPI_UNWEIGHTED);
|
||||
topo->in = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
topo->out = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if( (NULL == topo->in) || (NULL == topo->out) ) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
if (topo->indegree > 0) {
|
||||
topo->in = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
if (NULL == topo->in) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
}
|
||||
} else {
|
||||
topo->in = NULL;
|
||||
}
|
||||
if (topo->outdegree > 0) {
|
||||
topo->out = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if (NULL == topo->out) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
}
|
||||
} else {
|
||||
topo->out = NULL;
|
||||
}
|
||||
|
||||
topo->inw = NULL;
|
||||
topo->outw = NULL;
|
||||
if (MPI_UNWEIGHTED != weights) {
|
||||
topo->inw = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
topo->outw = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if( (NULL == topo->inw) || (NULL == topo->outw) ) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
if (topo->indegree > 0) {
|
||||
topo->inw = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
if (NULL == topo->inw) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
}
|
||||
}
|
||||
if (topo->outdegree > 0) {
|
||||
topo->outw = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if (NULL == topo->outw) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -179,10 +200,14 @@ int mca_topo_base_dist_graph_distribute(mca_topo_base_module_t* module,
|
||||
temp = topo->in;
|
||||
if (MPI_UNWEIGHTED != weights) {
|
||||
count *= 2; /* don't forget the weights */
|
||||
temp = (int*)malloc(count*sizeof(int)); /* Allocate an array big enough to hold the edges and their weights */
|
||||
if( NULL == temp ) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
if (count > 0) {
|
||||
/* Allocate an array big enough to hold the edges and
|
||||
their weights */
|
||||
temp = (int*)malloc(count*sizeof(int));
|
||||
if (NULL == temp) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
}
|
||||
}
|
||||
}
|
||||
for( left_over = count, current_pos = i = 0; left_over > 0; i++ ) {
|
||||
@ -211,10 +236,14 @@ int mca_topo_base_dist_graph_distribute(mca_topo_base_module_t* module,
|
||||
temp = topo->out;
|
||||
if (MPI_UNWEIGHTED != weights) {
|
||||
count *= 2; /* don't forget the weights */
|
||||
temp = (int*)malloc(count*sizeof(int)); /* Allocate an array big enough to hold the edges and their weights */
|
||||
if( NULL == temp ) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
if (count > 0) {
|
||||
/* Allocate an array big enough to hold the edges and
|
||||
their weights */
|
||||
temp = (int*)malloc(count*sizeof(int));
|
||||
if (NULL == temp) {
|
||||
err = OMPI_ERR_OUT_OF_RESOURCE;
|
||||
goto bail_out;
|
||||
}
|
||||
}
|
||||
}
|
||||
for( left_over = count, current_pos = i = 0; left_over > 0; i++ ) {
|
||||
|
@ -48,31 +48,40 @@ int mca_topo_base_dist_graph_create_adjacent(mca_topo_base_module_t* module,
|
||||
topo->indegree = indegree;
|
||||
topo->outdegree = outdegree;
|
||||
topo->weighted = !((MPI_UNWEIGHTED == sourceweights) && (MPI_UNWEIGHTED == destweights));
|
||||
topo->in = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
if( NULL == topo->in ) {
|
||||
goto bail_out;
|
||||
}
|
||||
memcpy( topo->in, sources, sizeof(int) * topo->indegree );
|
||||
if( MPI_UNWEIGHTED != sourceweights ) {
|
||||
topo->inw = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
if( NULL == topo->inw ) {
|
||||
|
||||
if (topo->indegree > 0) {
|
||||
topo->in = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
if (NULL == topo->in) {
|
||||
goto bail_out;
|
||||
}
|
||||
memcpy( topo->inw, sourceweights, sizeof(int) * topo->indegree );
|
||||
memcpy(topo->in, sources, sizeof(int) * topo->indegree);
|
||||
if (MPI_UNWEIGHTED != sourceweights) {
|
||||
topo->inw = (int*)malloc(sizeof(int) * topo->indegree);
|
||||
if( NULL == topo->inw ) {
|
||||
goto bail_out;
|
||||
}
|
||||
memcpy( topo->inw, sourceweights, sizeof(int) * topo->indegree );
|
||||
}
|
||||
}
|
||||
topo->out = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if( NULL == topo->out ) {
|
||||
goto bail_out;
|
||||
}
|
||||
memcpy( topo->out, destinations, sizeof(int) * topo->outdegree );
|
||||
topo->outw = NULL;
|
||||
if( MPI_UNWEIGHTED != destweights ) {
|
||||
topo->outw = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if( NULL == topo->outw ) {
|
||||
|
||||
if (topo->outdegree > 0) {
|
||||
topo->out = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if (NULL == topo->out) {
|
||||
goto bail_out;
|
||||
}
|
||||
memcpy( topo->outw, destweights, sizeof(int) * topo->outdegree );
|
||||
memcpy(topo->out, destinations, sizeof(int) * topo->outdegree);
|
||||
topo->outw = NULL;
|
||||
if (MPI_UNWEIGHTED != destweights) {
|
||||
if (topo->outdegree > 0) {
|
||||
topo->outw = (int*)malloc(sizeof(int) * topo->outdegree);
|
||||
if (NULL == topo->outw) {
|
||||
goto bail_out;
|
||||
}
|
||||
memcpy(topo->outw, destweights, sizeof(int) * topo->outdegree);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
(*newcomm)->c_topo = module;
|
||||
(*newcomm)->c_topo->mtc.dist_graph = topo;
|
||||
(*newcomm)->c_topo->reorder = reorder;
|
||||
|
Загрузка…
x
Ссылка в новой задаче
Block a user