source: python/lib/gio.h @ b8b985e

Revision b8b985e, 4.4 KB checked in by Tom Uram <turam@…>, 5 years ago (diff)

Intermediate commit of work with Antonio

  • Property mode set to 100644
Line 
1/*
2 *                    Copyright (C) 2015, UChicago Argonne, LLC
3 *                               All Rights Reserved
4 *
5 *                               Generic IO (ANL-15-066)
6 *                     Hal Finkel, Argonne National Laboratory
7 *
8 *                              OPEN SOURCE LICENSE
9 *
10 * Under the terms of Contract No. DE-AC02-06CH11357 with UChicago Argonne,
11 * LLC, the U.S. Government retains certain rights in this software.
12 *
13 * Redistribution and use in source and binary forms, with or without
14 * modification, are permitted provided that the following conditions are met:
15 *
16 *   1. Redistributions of source code must retain the above copyright notice,
17 *      this list of conditions and the following disclaimer.
18 *
19 *   2. Redistributions in binary form must reproduce the above copyright
20 *      notice, this list of conditions and the following disclaimer in the
21 *      documentation and/or other materials provided with the distribution.
22 *
23 *   3. Neither the names of UChicago Argonne, LLC or the Department of Energy
24 *      nor the names of its contributors may be used to endorse or promote
25 *      products derived from this software without specific prior written
26 *      permission.
27 *
28 * *****************************************************************************
29 *
30 *                                  DISCLAIMER
31 * THE SOFTWARE IS SUPPLIED “AS IS” WITHOUT WARRANTY OF ANY KIND.  NEITHER THE
32 * UNTED STATES GOVERNMENT, NOR THE UNITED STATES DEPARTMENT OF ENERGY, NOR
33 * UCHICAGO ARGONNE, LLC, NOR ANY OF THEIR EMPLOYEES, MAKES ANY WARRANTY,
34 * EXPRESS OR IMPLIED, OR ASSUMES ANY LEGAL LIABILITY OR RESPONSIBILITY FOR THE
35 * ACCURACY, COMPLETENESS, OR USEFULNESS OF ANY INFORMATION, DATA, APPARATUS,
36 * PRODUCT, OR PROCESS DISCLOSED, OR REPRESENTS THAT ITS USE WOULD NOT INFRINGE
37 * PRIVATELY OWNED RIGHTS.
38 *
39 * *****************************************************************************
40 */
41
42#include <GenericIO.h>
43
44#include <stdint.h>
45#include <sstream>
46
47template <class T>
48#ifndef GENERICIO_NO_MPI
49void read_gio(const MPI_Comm C, char* file_name, std::string var_name, T*& data, int field_count){
50  gio::GenericIO reader(C, file_name);
51  int rank;
52  MPI_Comm_rank(C, &rank);
53  printf("rank = %d\n", rank);
54#else
55void read_gio(char* file_name, std::string var_name, T*& data, int field_count){
56  gio::GenericIO reader(file_name);
57#endif
58  reader.openAndReadHeader(gio::GenericIO::MismatchAllowed);
59  int num_ranks = reader.readNRanks();
60  printf("num_ranks = %d\n", num_ranks);
61  uint64_t max_size = 0;
62//  uint64_t rank_size[num_ranks];
63  uint64_t rank_size;
64//  for(int i =0;i<num_ranks;++i){
65//    rank_size[i] = reader.readNumElems(i);
66//    if(max_size < rank_size[i])
67//      max_size = rank_size[i];
68//  }
69  rank_size = reader.readNumElems(rank);
70  max_size = rank_size;
71  printf("rank_size: %ld\nmax_size: %ld\n", rank_size, max_size);
72  T* rank_data = new T[max_size*field_count+reader.requestedExtraSpace()/sizeof(T)];
73  int64_t offset =0;
74  reader.addScalarizedVariable(var_name,rank_data,field_count,
75                               gio::GenericIO::VarHasExtraSpace);
76//  for(int i=0;i<num_ranks;++i){
77//    reader.readData(i,false);
78//    std::copy(rank_data,rank_data+rank_size[i]*field_count,data+offset);
79//    offset +=rank_size[i]*field_count;
80//  }
81  reader.readData(rank,false);
82  std::copy(rank_data,rank_data+rank_size*field_count,data);
83  delete [] rank_data;
84  reader.close();
85}
86extern "C" int64_t get_elem_num(const MPI_Comm C, char* file_name);
87
88extern "C" void read_gio_float (const MPI_Comm C, char* file_name, char* var_name, float* data, int field_count);
89extern "C" void read_gio_double(const MPI_Comm C, char* file_name, char* var_name, double* data, int field_count);
90extern "C" void read_gio_uint16 (const MPI_Comm C, char* file_name, char* var_name, uint16_t* data, int field_count); 
91extern "C" void read_gio_int32 (const MPI_Comm C, char* file_name, char* var_name, int* data, int field_count); 
92extern "C" void read_gio_int64 (const MPI_Comm C, char* file_name, char* var_name, int64_t* data, int field_count);
93enum var_type{
94  float_type=0,
95  double_type=1,
96  int32_type=2,
97  int64_type=3,
98  uint16_type=4,
99  type_not_found=9,
100  var_not_found=10
101};
102extern "C" var_type get_variable_type(const MPI_Comm C, char* file_name,char* var_name);
103extern "C" int get_variable_field_count(const MPI_Comm C, char* file_name,char* var_name);
104extern "C" void inspect_gio(const MPI_Comm C, char* file_name);
Note: See TracBrowser for help on using the repository browser.