Yet Another eXchange Tool 0.11.1
Loading...
Searching...
No Matches
test_idxmod.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 <stdbool.h>
#include <stdlib.h>
#include <assert.h>
#include <mpi.h>
#include <yaxt.h>
#include "tests.h"
#include "ctest_common.h"
#include "test_idxlist_utils.h"
int main(int argc, char **argv)
{
test_init_mpi(&argc, &argv, MPI_COMM_WORLD);
{ // idxvec modifier
struct Xt_modifier mod;
{
static const Xt_int g_src_idx[] = {1,2,3,4,5,6,7,8,9};
enum { g_src_num = sizeof(g_src_idx) / sizeof(g_src_idx[0]) };
mod.extract = xt_idxvec_new(g_src_idx, g_src_num);
}
{
static const Xt_int g_dst_idx[] = {9,8,7,6,5,4,3,2,1};
enum { g_dst_num = sizeof(g_dst_idx) / sizeof(g_dst_idx[0]) };
mod.subst = xt_idxvec_new(g_dst_idx, g_dst_num);
}
mod.mask = 0;
static const Xt_int patch_idx[] = {3,4,4,4,7,7,8};
enum { patch_num = sizeof(patch_idx) / sizeof(patch_idx[0]) };
Xt_idxlist patch_idxlist = xt_idxvec_new(patch_idx, patch_num);
Xt_idxlist mpatch_idxlist = xt_idxmod_new(patch_idxlist, &mod, 1, NULL);
// idx:{3,4,4,4,7,7,8} -> pos:{2,3,3,3,6,6,7} => idx:{7,6,6,6,3,3,2}
static const Xt_int ref_mpatch_idx[] = {7,6,6,6,3,3,2};
check_idxlist(mpatch_idxlist, ref_mpatch_idx, patch_num);
xt_idxlist_delete(mpatch_idxlist);
xt_idxlist_delete(patch_idxlist);
}
{ // idxstripes modifier
struct Xt_modifier mod;
{
static const struct Xt_stripe g_src_stripe[]
= { {.start=1, .nstrides=20, .stride=1} };
enum { g_src_num = sizeof(g_src_stripe) / sizeof(g_src_stripe[0]) };
mod.extract = xt_idxstripes_new(g_src_stripe, g_src_num);
}
{
static const struct Xt_stripe g_dst_stripe[]
= { {.start=100, .nstrides=20, .stride=-1} };
enum { g_dst_num = sizeof(g_dst_stripe) / sizeof(g_dst_stripe[0]) };
mod.subst = xt_idxstripes_new(g_dst_stripe, g_dst_num);
}
enum { mod_mask = 32 };
mod.mask=mod_mask;
static const Xt_int patch_idx[] = {0,1,3,3,5,50,100,150};
enum { patch_num = sizeof(patch_idx) / sizeof(patch_idx[0]) };
Xt_idxlist patch_idxlist = xt_idxvec_new(patch_idx, patch_num);
int mstate[patch_num];
for (size_t i = 0; i < patch_num; ++i)
mstate[i] = (int)(i + 1);
Xt_idxlist mpatch_idxlist = xt_idxmod_new(patch_idxlist, &mod, 1, mstate);
// inter:{1,3,3,5} => extract_pos:{0,2,2,4} => subst_idx:{100,98,98,96},
// patch_pos:{1,2,3,4} = > mpatch:{0,100,98,98,96,50,100,150}
static const Xt_int ref_mpatch_idx[] = {0,100,98,98,96,50,100,150};
check_idxlist(mpatch_idxlist, ref_mpatch_idx, patch_num);
static const int ref_mstate[]
= {1, 2|mod_mask, 3|mod_mask, 4|mod_mask, 5|mod_mask, 6, 7, 8};
// check mstate:
bool mismatch = false;
for (size_t i = 0; i < patch_num; i++)
mismatch |= (mstate[i] != ref_mstate[i]);
if (mismatch)
PUT_ERR("(mstate[i] != ref_mstate[i])\n");
xt_idxlist_delete(mpatch_idxlist);
xt_idxlist_delete(patch_idxlist);
}
{ // multiple modifier, track modifier usage
enum { num_mod = 2 };
struct Xt_modifier mod[2];
{
static const Xt_int g1_src_idx[] = {1,2,3,4,5,6,7,8,9};
enum { g1_src_num = sizeof(g1_src_idx) / sizeof(g1_src_idx[0]) };
mod[0].extract = xt_idxvec_new(g1_src_idx, g1_src_num);
}
{
static const Xt_int g1_dst_idx[] = {9,8,7,6,5,4,3,2,1};
enum { g1_dst_num = sizeof(g1_dst_idx) / sizeof(g1_dst_idx[0]) };
mod[0].subst = xt_idxvec_new(g1_dst_idx, g1_dst_num);
}
mod[0].mask = 1;
{
static const Xt_int g2_src_idx[] = {1,2,8,9,10};
enum { g2_src_num = sizeof(g2_src_idx) / sizeof(g2_src_idx[0]) };
mod[1].extract = xt_idxvec_new(g2_src_idx, g2_src_num);
}
{
static const Xt_int g2_dst_idx[] = {8,2,8,2,5};
enum { g2_dst_num = sizeof(g2_dst_idx) / sizeof(g2_dst_idx[0]) };
mod[1].subst = xt_idxvec_new(g2_dst_idx, g2_dst_num);
}
mod[1].mask = 2;
static const Xt_int patch_idx[] = {6,7,25,8,9,10};
enum { patch_num = sizeof(patch_idx) / sizeof(patch_idx[0]) };
Xt_idxlist patch_idxlist = xt_idxvec_new(patch_idx, patch_num);
static const int ref_mstate[] = {1|0, 1|0, 0|0, 1|2, 1|2, 0|2};
int mstate[patch_num];
// reset mstate:
for (size_t i = 0; i < patch_num; i++)
mstate[i] = 0;
Xt_idxlist mpatch_idxlist = xt_idxmod_new(patch_idxlist, mod, 2, mstate);
// mod1: idx:{6,7,25,8,9,10} -> pos:{5,6,nil,7,8,nil} => idx:{4,3,25,2,1,10}
// mod2: idx:{4,3,25,2,1,10} -> pos:{nil,nil,nil,1,0,4}
// => idx:{4,3,25,2,8,5}
static const Xt_int ref_mpatch_idx[] = {4,3,25,2,8,5};
check_idxlist(mpatch_idxlist, ref_mpatch_idx, patch_num);
// check mstate:
bool mismatch = false;
for (size_t i = 0; i < patch_num; i++)
mismatch |= (mstate[i] != ref_mstate[i]);
if (mismatch)
PUT_ERR("(mstate[i] != ref_mstate[i])\n");
xt_idxlist_delete(mpatch_idxlist);
xt_idxlist_delete(patch_idxlist);
for (size_t i = 0; i < num_mod; ++i) {
}
}
// finalize:
MPI_Finalize();
return TEST_EXIT_CODE;
}
/*
* 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
add versions of standard API functions not returning on error
Xt_idxlist extract
idx values
Definition xt_idxmod.h:69
Xt_idxlist subst
Definition xt_idxmod.h:70
Xt_int start
Definition xt_stripe.h:55
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_idxmod_new(Xt_idxlist patch_idxlist, struct Xt_modifier *modifier, int modifier_num, int *mstate)
generates a new index list based on an index list and a sequence of modifiers
Definition xt_idxmod.c:62
Xt_idxlist xt_idxstripes_new(struct Xt_stripe const *stripes, int num_stripes)
Xt_idxlist xt_idxvec_new(const Xt_int *idxlist, int num_indices)
Definition xt_idxvec.c:212