1
1
This commit was SVN r18069.
Этот коммит содержится в:
George Bosilca 2008-04-02 06:38:33 +00:00
родитель 944453c4c1
Коммит a00ca20446
3 изменённых файлов: 3 добавлений и 5 удалений

Просмотреть файл

@ -321,8 +321,6 @@ static void ompi_comm_construct(ompi_communicator_t* comm)
we need an easy way for the coll base code to realize we've
done this. */
memset(&comm->c_coll, 0, sizeof(mca_coll_base_comm_coll_t));
return;
}
static void ompi_comm_destruct(ompi_communicator_t* comm)

Просмотреть файл

@ -200,7 +200,6 @@ int ompi_group_minloc ( int list[] , int length )
int ompi_group_incl(ompi_group_t* group, int n, int *ranks, ompi_group_t **new_group)
{
int method,result;
method = 0;
@ -208,6 +207,7 @@ int ompi_group_incl(ompi_group_t* group, int n, int *ranks, ompi_group_t **new_g
if (ompi_use_sparse_group_storage)
{
int len [4];
len[0] = ompi_group_calc_plist ( n ,ranks );
len[1] = ompi_group_calc_strided ( n ,ranks );
len[2] = ompi_group_calc_sporadic ( n ,ranks );

Просмотреть файл

@ -100,10 +100,10 @@ mca_coll_inter_allgather_inter(void *sbuf, int scount,
root, comm->c_local_comm,
comm->c_local_comm->c_coll.coll_bcast_module);
if (OMPI_SUCCESS != err) {
goto exit;
goto exit;
}
exit:
exit:
if (NULL != ptmp) {
free(ptmp);
}