INGOR
Loading...
Searching...
No Matches
ytMPI.h
1/*
2 util/ytMPI.{h,c} : fake MPI
3 Copyright (C) 2023, Yoshinori Tamada <tamada A T ytlab.jp>
4 All rights reserved.
5
6 See LICENSE.txt for details of the licensing agreement.
7*/
8#ifndef __INGOR_MPI_H
9#define __INGOR_MPI_H
10
11#ifdef USE_MPI
12#include <mpi.h>
13#else
14typedef int MPI_Comm;
15#endif /* USE_MPI */
16
17
18#endif /* __INGOR_MPI_H */