source: python/lib/gio.cxx @ b8b985e

Revision b8b985e, 5.6 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 "gio.h"
43#include <iostream>
44
45  void read_gio_float(const MPI_Comm C, char* file_name, char* var_name, float* data, int field_count){
46    read_gio<float>(C, file_name,var_name,data,field_count);
47  }
48  void read_gio_double(const MPI_Comm C, char* file_name, char* var_name, double* data, int field_count){
49    read_gio<double>(C, file_name,var_name,data,field_count);
50  }
51  void read_gio_uint16(const MPI_Comm C, char* file_name, char* var_name, uint16_t* data, int field_count){
52    read_gio<uint16_t>(C, file_name,var_name,data,field_count);
53  }
54  void read_gio_int32(const MPI_Comm C, char* file_name, char* var_name, int* data, int field_count){
55    read_gio<int>(C, file_name,var_name,data,field_count);
56  }
57  void read_gio_int64(const MPI_Comm C, char* file_name, char* var_name, int64_t* data, int field_count){
58    read_gio<int64_t>(C, file_name,var_name,data,field_count);
59  }
60 
61  int64_t get_elem_num(const MPI_Comm C, char* file_name){
62    gio::GenericIO reader(C, file_name);
63    reader.openAndReadHeader(gio::GenericIO::MismatchAllowed);
64    int num_ranks = reader.readNRanks();
65    uint64_t size = 0;
66    //for(int i =0;i<num_ranks;++i)
67    //  size +=reader.readNumElems(i);
68    int rank;
69    MPI_Comm_rank(C, &rank);
70    size = reader.readNumElems(rank);
71    reader.close();
72    return size;
73  }
74
75  var_type get_variable_type(const MPI_Comm C, char* file_name,char* var_name){
76   gio::GenericIO reader(C, file_name);
77   std::vector<gio::GenericIO::VariableInfo> VI;
78   reader.openAndReadHeader(gio::GenericIO::MismatchAllowed);
79   reader.getVariableInfo(VI);
80
81   int num =VI.size();
82    for(int i =0;i<num;++i){
83      gio::GenericIO::VariableInfo vinfo = VI[i];
84      if(vinfo.Name == var_name){
85        if(vinfo.IsFloat && vinfo.ElementSize == 4)
86          return float_type;
87        else if(vinfo.IsFloat && vinfo.ElementSize == 8)
88          return double_type;
89        else if(!vinfo.IsFloat && vinfo.ElementSize == 2)
90          return uint16_type;
91        else if(!vinfo.IsFloat && vinfo.ElementSize == 4)
92          return int32_type;
93        else if(!vinfo.IsFloat && vinfo.ElementSize == 8)
94          return int64_type;
95        else
96          return type_not_found;
97      }
98    }
99    return var_not_found;
100     
101  }
102
103  int get_variable_field_count(const MPI_Comm C, char* file_name,char* var_name){
104   gio::GenericIO reader(C, file_name);
105   std::vector<gio::GenericIO::VariableInfo> VI;
106   reader.openAndReadHeader(gio::GenericIO::MismatchAllowed);
107   reader.getVariableInfo(VI);
108
109   int num =VI.size();
110    for(int i =0;i<num;++i){
111      gio::GenericIO::VariableInfo vinfo = VI[i];
112      if(vinfo.Name == var_name) {
113        return vinfo.Size/vinfo.ElementSize;
114      }
115    }
116    return 0;
117  }
118
119#ifndef GENERICIO_NO_MPI
120extern "C" void inspect_gio(const MPI_Comm C, char* file_name){
121  gio::GenericIO reader(C, file_name);
122#else
123extern "C" void inspect_gio(const MPI_Comm C, char* file_name){
124  gio::GenericIO reader(C, file_name);
125#endif
126  int64_t size = get_elem_num(C,file_name);
127  std::vector<gio::GenericIO::VariableInfo> VI;
128  reader.openAndReadHeader(gio::GenericIO::MismatchAllowed);
129  reader.getVariableInfo(VI);
130  std::cout<<"Number of Elements: "<<size<<std::endl;
131  int num =VI.size();
132  std::cout<<"[data type] Variable name"<<std::endl;
133  std::cout<<"---------------------------------------------"<<std::endl;
134  for(int i =0;i<num;++i){
135    gio::GenericIO::VariableInfo vinfo = VI[i];
136
137    if(vinfo.IsFloat)
138      std::cout<<"[f";
139    else
140      std::cout<<"[i";
141    int NumElements = vinfo.Size/vinfo.ElementSize;
142    std::cout<<" "<<vinfo.ElementSize*8;
143    if (NumElements > 1)
144      std::cout<<"x"<<NumElements;
145    std::cout<<"] ";
146    std::cout<<vinfo.Name<<std::endl;
147  }
148  std::cout<<"\n(i=integer,f=floating point, number bits size)"<<std::endl;
149}
150
Note: See TracBrowser for help on using the repository browser.