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

« back to all changes in this revision

Viewing changes to examples/C/attributes/attributes_write.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:
15
15
{
16
16
    char        filename [256];
17
17
    int         rank, size, i;
18
 
    int         NX = 10, level = 1; 
 
18
    int         NX = 10; 
19
19
    double      t[NX], mean = 0;
20
20
    MPI_Comm    comm = MPI_COMM_WORLD;
21
21
    const char * str = "Nov, 2009";
22
22
 
23
23
    /* ADIOS variables declarations for matching gwrite_temperature.ch */
24
 
    int         adios_err;
25
24
    uint64_t    adios_groupsize, adios_totalsize;
26
25
    int64_t     adios_handle;
27
26