Yet Another eXchange Tool 0.11.1
Loading...
Searching...
No Matches
test_redist_p2p.c
/*
* Keywords:
* Maintainer: Jörg Behrens <behrens@dkrz.de>
* Moritz Hanke <hanke@dkrz.de>
* Thomas Jahns <jahns@dkrz.de>
* URL: https://dkrz-sw.gitlab-pages.dkrz.de/yaxt/
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are
* met:
*
* Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* Neither the name of the DKRZ GmbH nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS
* IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
* PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER
* OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#include <assert.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <mpi.h>
#include <yaxt.h>
#include "tests.h"
#include "ctest_common.h"
#include "test_redist_common.h"
static void
check_offset_extents(MPI_Comm comm, Xt_config config);
int main(int argc, char **argv) {
test_init_mpi(&argc, &argv, MPI_COMM_WORLD);
Xt_config config = redist_exchanger_option(&argc, &argv);
// offset-free test:
{
// source index list
static const Xt_int src_index_list[] = {5,67,4,5,13,9,2,1,0,96,13,12,1,3};
enum { src_num = sizeof(src_index_list) / sizeof(src_index_list[0]) };
Xt_idxlist src_idxlist = xt_idxvec_new(src_index_list, src_num);
// destination index list
static const Xt_int dst_index_list[] = {5,4,3,96,1,5,4,5,4,3,13,2,1};
enum { dst_num = sizeof(dst_index_list) / sizeof(dst_index_list[0]) };
Xt_idxlist dst_idxlist = xt_idxvec_new(dst_index_list, dst_num);
// xmap
Xt_xmap xmap
= xt_xmap_all2all_new(src_idxlist, dst_idxlist, MPI_COMM_WORLD);
// redist_p2p
Xt_redist redist = xt_redist_p2p_custom_new(xmap, MPI_DOUBLE, config);
// test communicator of redist
if (!communicators_are_congruent(xt_redist_get_MPI_Comm(redist),
PUT_ERR("error in xt_redist_get_MPI_Comm\n");
// test exchange
static const double src_data[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13};
static const double ref_dst_data[] = {0,2,13,9,7,0,2,0,2,13,4,6,7};
enum { num_ref_values = sizeof(ref_dst_data) / sizeof(ref_dst_data[0]) };
double dst_data[dst_num];
check_redist(redist, src_data, num_ref_values, dst_data,
fill_array_double, NULL, ref_dst_data, MPI_DOUBLE, MPI_DOUBLE);
Xt_redist redist_copy = xt_redist_copy(redist);
check_redist(redist_copy, src_data, num_ref_values, dst_data,
fill_array_double, NULL, ref_dst_data, MPI_DOUBLE, MPI_DOUBLE);
// clean up
xt_redist_delete(redist_copy);
xt_idxlist_delete(src_idxlist);
xt_idxlist_delete(dst_idxlist);
}
// check offsets
{
// source index list
static const Xt_int src_index_list[] = {5,67,4,5,13,9,2,1,0,96,13,12,1,3};
enum { src_num = sizeof(src_index_list) / sizeof(src_index_list[0]) };
Xt_idxlist src_idxlist = xt_idxvec_new(src_index_list, src_num);
// destination index list
static const Xt_int dst_index_list[] = {5,4,3,96,1,5,4,5,4,3,13,2,1};
enum { dst_num = sizeof(dst_index_list) / sizeof(dst_index_list[0]) };
Xt_idxlist dst_idxlist = xt_idxvec_new(dst_index_list, dst_num);
// xmap
Xt_xmap xmap
= xt_xmap_all2all_new(src_idxlist, dst_idxlist, MPI_COMM_WORLD);
// redist_p2p with offsets
int src_pos[src_num];
int dst_pos[dst_num];
for (int i = 0; i < src_num; i++)
src_pos[i] = i;
for (int i = 0; i < dst_num; i++)
dst_pos[i] = dst_num-1-i;
xmap, src_pos, dst_pos, MPI_DOUBLE, config);
// test communicator of redist
if (!communicators_are_congruent(xt_redist_get_MPI_Comm(redist),
PUT_ERR("error in xt_redist_get_MPI_Comm\n");
// test exchange
static const double src_data[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13};
assert(sizeof(src_data)/sizeof(src_data[0]) == src_num);
static const double ref_dst_data[] = {7,6,4,13,2,0,2,0,7,9,13,2,0};
double dst_data[dst_num];
check_redist(redist, src_data, dst_num, dst_data,
fill_array_double, NULL, ref_dst_data, MPI_DOUBLE, MPI_DOUBLE);
Xt_redist redist_copy = xt_redist_copy(redist);
check_redist(redist_copy, src_data, dst_num, dst_data,
fill_array_double, NULL, ref_dst_data, MPI_DOUBLE, MPI_DOUBLE);
// clean up
xt_redist_delete(redist_copy);
xt_idxlist_delete(src_idxlist);
xt_idxlist_delete(dst_idxlist);
}
check_offset_extents(MPI_COMM_WORLD, config);
MPI_Finalize();
return TEST_EXIT_CODE;
}
static void
check_offset_extents_redist(Xt_redist redist, size_t src_num, size_t dst_num,
MPI_Comm comm);
static void
check_offset_extents(MPI_Comm comm, Xt_config config)
{
// source index list
static const Xt_int src_index_list[] = {5,67,4,5,13,9,2,1,0,96,13,12,1,3};
enum { src_num = sizeof(src_index_list) / sizeof(src_index_list[0]) };
Xt_idxlist src_idxlist = xt_idxvec_new(src_index_list, src_num);
// destination index list
static const Xt_int dst_index_list[] = {5,4,3,96,1,5,4,5,4,3,13,2,1};
enum { dst_num = sizeof(dst_index_list) / sizeof(dst_index_list[0]) };
Xt_idxlist dst_idxlist = xt_idxvec_new(dst_index_list, dst_num);
// xmap
Xt_xmap xmap
= xt_xmap_all2all_new(src_idxlist, dst_idxlist, comm);
// redist_p2p with extents of offsets
{
static const struct Xt_offset_ext
src_pos[1] = { { .start = 0, .size = src_num, .stride = 1 } },
dst_pos[1] = { { .start = dst_num - 1, .size = dst_num, .stride = -1 } };
xmap, sizeof (src_pos)/sizeof (src_pos[0]), src_pos,
sizeof (dst_pos)/sizeof (dst_pos[0]), dst_pos, MPI_LONG, config);
check_offset_extents_redist(redist, src_num, dst_num, comm);
}
{
static const struct Xt_aoffset_ext
src_pos[1] = { { .start = (MPI_Aint)0,
.size = src_num, .stride = (MPI_Aint)sizeof (long) } },
dst_pos[1] = { { .start = (MPI_Aint)((dst_num - 1)*sizeof (long)),
.size = dst_num, .stride = -(MPI_Aint)(sizeof (long)) }};
xmap, sizeof (src_pos)/sizeof (src_pos[0]), src_pos,
sizeof (dst_pos)/sizeof (dst_pos[0]), dst_pos, MPI_LONG, config);
check_offset_extents_redist(redist, src_num, dst_num, comm);
}
// clean up
xt_idxlist_delete(src_idxlist);
xt_idxlist_delete(dst_idxlist);
}
static void
check_offset_extents_redist(Xt_redist redist, size_t src_num, size_t dst_num,
MPI_Comm comm)
{
(void)src_num;
// test communicator of redist
if (!communicators_are_congruent(xt_redist_get_MPI_Comm(redist),
comm))
PUT_ERR("error in xt_redist_get_MPI_Comm\n");
// test exchange
static const long src_data[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13};
assert(sizeof(src_data)/sizeof(src_data[0]) == src_num);
static const long ref_dst_data[] = {7,6,4,13,2,0,2,0,7,9,13,2,0};
assert(sizeof(ref_dst_data)/sizeof(ref_dst_data[0]) == dst_num);
long dst_data[sizeof(ref_dst_data)/sizeof(ref_dst_data[0])];
check_redist(redist, src_data, dst_num, dst_data,
fill_array_long, NULL, ref_dst_data, MPI_LONG, MPI_LONG);
Xt_redist redist_copy = xt_redist_copy(redist);
check_redist(redist_copy, src_data, dst_num, dst_data,
fill_array_long, NULL, ref_dst_data, MPI_LONG, MPI_LONG);
xt_redist_delete(redist_copy);
}
/*
* Local Variables:
* c-basic-offset: 2
* coding: utf-8
* indent-tabs-mode: nil
* show-trailing-whitespace: t
* require-trailing-newline: t
* End:
*/
@ MPI_COMM_WORLD
Definition core.h:73
int MPI_Comm
Definition core.h:64
MPI_Aint stride
Definition xt_core.h:120
void xt_config_delete(Xt_config config)
Definition xt_config.c:84
void xt_initialize(MPI_Comm default_comm)
Definition xt_init.c:70
void xt_finalize(void)
Definition xt_init.c:92
XT_INT Xt_int
Definition xt_core.h:72
void xt_idxlist_delete(Xt_idxlist idxlist)
Definition xt_idxlist.c:75
Xt_idxlist xt_idxvec_new(const Xt_int *idxlist, int num_indices)
Definition xt_idxvec.c:212
void xt_redist_delete(Xt_redist redist)
Definition xt_redist.c:73
Xt_redist xt_redist_copy(Xt_redist redist)
Definition xt_redist.c:68
MPI_Comm xt_redist_get_MPI_Comm(Xt_redist redist)
Definition xt_redist.c:129
Xt_redist xt_redist_p2p_custom_new(Xt_xmap xmap, MPI_Datatype datatype, Xt_config config)
Xt_redist xt_redist_p2p_off_custom_new(Xt_xmap xmap, const int *src_offsets, const int *dst_offsets, MPI_Datatype datatype, Xt_config config)
Xt_redist xt_redist_p2p_aext_custom_new(Xt_xmap xmap, int num_src_ext, const struct Xt_aoffset_ext src_extents[], int num_dst_ext, const struct Xt_aoffset_ext dst_extents[], MPI_Datatype datatype, Xt_config config)
Xt_redist xt_redist_p2p_ext_custom_new(Xt_xmap xmap, int num_src_ext, const struct Xt_offset_ext src_extents[], int num_dst_ext, const struct Xt_offset_ext dst_extents[], MPI_Datatype datatype, Xt_config config)
void xt_xmap_delete(Xt_xmap xmap)
Definition xt_xmap.c:86
Xt_xmap xt_xmap_all2all_new(Xt_idxlist src_idxlist, Xt_idxlist dst_idxlist, MPI_Comm comm)