[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 | |
---|
| 45 | void read_gio_float(char* file_name, char* var_name, float* data){ |
---|
| 46 | read_gio<float>(file_name,var_name,data); |
---|
| 47 | } |
---|
| 48 | void read_gio_double(char* file_name, char* var_name, double* data){ |
---|
| 49 | read_gio<double>(file_name,var_name,data); |
---|
| 50 | } |
---|
| 51 | void read_gio_int32(char* file_name, char* var_name, int* data){ |
---|
| 52 | read_gio<int>(file_name,var_name,data); |
---|
| 53 | } |
---|
| 54 | void read_gio_int64(char* file_name, char* var_name, int64_t* data){ |
---|
| 55 | read_gio<int64_t>(file_name,var_name,data); |
---|
| 56 | } |
---|
| 57 | |
---|
| 58 | int64_t get_elem_num(char* file_name){ |
---|
| 59 | gio::GenericIO reader(file_name); |
---|
| 60 | reader.openAndReadHeader(gio::GenericIO::MismatchAllowed); |
---|
| 61 | int num_ranks = reader.readNRanks(); |
---|
| 62 | uint64_t size = 0; |
---|
| 63 | for(int i =0;i<num_ranks;++i) |
---|
| 64 | size +=reader.readNumElems(i); |
---|
| 65 | reader.close(); |
---|
| 66 | return size; |
---|
| 67 | } |
---|
| 68 | |
---|
| 69 | var_type get_variable_type(char* file_name,char* var_name){ |
---|
| 70 | gio::GenericIO reader(file_name); |
---|
| 71 | std::vector<gio::GenericIO::VariableInfo> VI; |
---|
| 72 | reader.openAndReadHeader(gio::GenericIO::MismatchAllowed); |
---|
| 73 | reader.getVariableInfo(VI); |
---|
| 74 | |
---|
| 75 | int num =VI.size(); |
---|
| 76 | for(int i =0;i<num;++i){ |
---|
| 77 | gio::GenericIO::VariableInfo vinfo = VI[i]; |
---|
| 78 | if(vinfo.Name == var_name){ |
---|
| 79 | if(vinfo.IsFloat && vinfo.Size == 4) |
---|
| 80 | return float_type; |
---|
| 81 | else if(vinfo.IsFloat && vinfo.Size == 8) |
---|
| 82 | return double_type; |
---|
| 83 | else if(!vinfo.IsFloat && vinfo.Size == 4) |
---|
| 84 | return int32_type; |
---|
| 85 | else if(!vinfo.IsFloat && vinfo.Size == 8) |
---|
| 86 | return int64_type; |
---|
| 87 | else |
---|
| 88 | return type_not_found; |
---|
| 89 | } |
---|
| 90 | } |
---|
| 91 | return var_not_found; |
---|
| 92 | |
---|
| 93 | } |
---|
| 94 | |
---|
| 95 | extern "C" void inspect_gio(char* file_name){ |
---|
| 96 | int64_t size = get_elem_num(file_name); |
---|
| 97 | gio::GenericIO reader(file_name); |
---|
| 98 | std::vector<gio::GenericIO::VariableInfo> VI; |
---|
| 99 | reader.openAndReadHeader(gio::GenericIO::MismatchAllowed); |
---|
| 100 | reader.getVariableInfo(VI); |
---|
| 101 | std::cout<<"Number of Elements: "<<size<<std::endl; |
---|
| 102 | int num =VI.size(); |
---|
| 103 | std::cout<<"[data type] Variable name"<<std::endl; |
---|
| 104 | std::cout<<"---------------------------------------------"<<std::endl; |
---|
| 105 | for(int i =0;i<num;++i){ |
---|
| 106 | gio::GenericIO::VariableInfo vinfo = VI[i]; |
---|
| 107 | |
---|
| 108 | if(vinfo.IsFloat) |
---|
| 109 | std::cout<<"[f"; |
---|
| 110 | else |
---|
| 111 | std::cout<<"[i"; |
---|
| 112 | std::cout<<" "<<vinfo.Size*8<<"] "; |
---|
| 113 | std::cout<<vinfo.Name<<std::endl; |
---|
| 114 | } |
---|
| 115 | std::cout<<"\n(i=integer,f=floating point, number bits size)"<<std::endl; |
---|
| 116 | } |
---|
| 117 | |
---|