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

« back to all changes in this revision

Viewing changes to src/core/transforms/adios_transforms_common.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:
141
141
#include "adios_internals.h"
142
142
#include "adios_endianness.h"
143
143
#include "adios_logger.h"
 
144
#include "bp_utils.h"
144
145
#include "core/common_adios.h"
145
146
 
146
147
#include "adios_transforms_common.h"
214
215
    int dim;
215
216
    uint64_t size = 1;
216
217
 
217
 
    int is_global;
 
218
    //int is_global;
218
219
    uint64_t *ldims, *gdims, *offsets;
219
220
 
220
221
    assert(var);
225
226
    ldims = malloc(sizeof(uint64_t) * dims->count);
226
227
    gdims = malloc(sizeof(uint64_t) * dims->count);
227
228
    offsets = malloc(sizeof(uint64_t) * dims->count);
228
 
    is_global = bp_get_dimension_generic_notime(dims, ldims, gdims, offsets, 0);
 
229
    //is_global = bp_get_dimension_generic_notime(dims, ldims, gdims, offsets, 0);
229
230
    free(gdims);
230
231
    free(offsets);
231
232