~ubuntu-branches/ubuntu/vivid/adios/vivid-proposed

« back to all changes in this revision

Viewing changes to tests/C/flexpath_tests/global_range_select/arrays_read.c

  • Committer: Package Import Robot
  • Author(s): Alastair McKinstry
  • Date: 2014-06-16 23:06:38 UTC
  • mfrom: (15.1.8 sid)
  • Revision ID: package-import@ubuntu.com-20140616230638-cxryhot6b8ge32l6
Tags: 1.7.0-1
* New upstream release.
* Add adios.pc pkgconfig file. adios_config now uses this.

Show diffs side-by-side

added added

removed removed

Lines of Context:
21
21
 
22
22
int main (int argc, char ** argv) 
23
23
{
24
 
    char        filename [256];
25
 
    int         rank, size, i, j;
 
24
    int         rank, j;
26
25
    int         NX, NY; 
27
26
    double      *t;
28
27
    MPI_Comm    comm = MPI_COMM_WORLD;
29
28
 
30
 
    int         adios_err;
31
 
    int64_t     adios_handle, adios_buf_size;
32
 
 
33
29
    MPI_Init (&argc, &argv);
34
30
    MPI_Comm_rank (comm, &rank);
35
31