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