File: pio_write_setup_grid.h

package info (click to toggle)
cdo 2.5.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 49,964 kB
  • sloc: cpp: 180,221; ansic: 95,352; sh: 7,292; f90: 6,089; makefile: 1,975; ruby: 1,078; csh: 1,020; python: 995; fortran: 319; pascal: 219; perl: 9
file content (29 lines) | stat: -rw-r--r-- 495 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#ifndef PIO_WRITE_SETUP_GRID_H
#define PIO_WRITE_SETUP_GRID_H

#if defined(HAVE_CONFIG_H)
#include "config.h"
#endif

#ifdef USE_MPI
#include <mpi.h>
#endif

#include "pio_write.h"

#ifdef USE_MPI
void findPartition2D(int npart[2], int num_parts);
#endif

int setupGrid(const struct model_config *setup, MPI_Comm comm);

#endif
/*
 * Local Variables:
 * c-file-style: "Java"
 * c-basic-offset: 2
 * indent-tabs-mode: nil
 * show-trailing-whitespace: t
 * require-trailing-newline: t
 * End:
 */