Revision c37a7bdd35515c3f5140a923d495be58f270caea authored by Philippe SWARTVAGHER on 27 April 2022, 10:36:09 UTC, committed by Philippe SWARTVAGHER on 27 April 2022, 10:36:09 UTC
1 parent 96846f5
Raw File
mpi_bench_noise_omp_nocomm.c
/*
 * MadMPI benchmark
 * Copyright (C) 2015-2016 (see AUTHORS file)
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or (at
 * your option) any later version.
 *
 * This program is distributed in the hope that it will be useful, but
 * WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 * General Public License for more details.
 */

#include "mpi_bench_generic.h"

static void mpi_bench_noise_omp_nocomm_server(void*buf, size_t len)
{
  mpi_bench_compute_vector(buf, len);
}

static void mpi_bench_noise_omp_nocomm_client(void*buf, size_t len)
{
  mpi_bench_compute_vector(buf, len);
}

const struct mpi_bench_s mpi_bench_noise_omp_nocomm =
  {
    .label      = "mpi_bench_noise_omp_nocomm",
    .name       = "MPI system noise without communication (OpenMP)",
    .rtt        = 0,
    .server     = &mpi_bench_noise_omp_nocomm_server,
    .client     = &mpi_bench_noise_omp_nocomm_client,
    .setparam   = NULL,
    .getparams  = NULL,
  };
back to top