gem5  v20.1.0.0
hdf5.hh
Go to the documentation of this file.
1 /*
2  * Copyright (c) 2016-2019 Arm Limited
3  * All rights reserved
4  *
5  * The license below extends only to copyright in the software and shall
6  * not be construed as granting a license to any other intellectual
7  * property including but not limited to intellectual property relating
8  * to a hardware implementation of the functionality of the software
9  * licensed hereunder. You may use the software subject to the license
10  * terms below provided that you ensure that this notice is replicated
11  * unmodified and in its entirety in all distributions of the software,
12  * modified or unmodified, in source code or in binary form.
13  *
14  * Redistribution and use in source and binary forms, with or without
15  * modification, are permitted provided that the following conditions are
16  * met: redistributions of source code must retain the above copyright
17  * notice, this list of conditions and the following disclaimer;
18  * redistributions in binary form must reproduce the above copyright
19  * notice, this list of conditions and the following disclaimer in the
20  * documentation and/or other materials provided with the distribution;
21  * neither the name of the copyright holders nor the names of its
22  * contributors may be used to endorse or promote products derived from
23  * this software without specific prior written permission.
24  *
25  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36  */
37 
38 #ifndef __BASE_STATS_HDF5_HH__
39 #define __BASE_STATS_HDF5_HH__
40 
41 #include <H5Cpp.h>
42 
43 #include <memory>
44 #include <stack>
45 #include <string>
46 #include <vector>
47 
48 #include "base/output.hh"
49 #include "base/stats/output.hh"
50 #include "base/stats/types.hh"
51 
52 namespace Stats {
53 
54 class Hdf5 : public Output
55 {
56  public:
57  Hdf5(const std::string &file, unsigned chunking, bool desc, bool formulas);
58 
59  ~Hdf5();
60 
61  Hdf5() = delete;
62  Hdf5(const Hdf5 &other) = delete;
63 
64  public: // Output interface
65  void begin() override;
66  void end() override;
67  bool valid() const override;
68 
69  void beginGroup(const char *name) override;
70  void endGroup() override;
71 
72  void visit(const ScalarInfo &info) override;
73  void visit(const VectorInfo &info) override;
74  void visit(const DistInfo &info) override;
75  void visit(const VectorDistInfo &info) override;
76  void visit(const Vector2dInfo &info) override;
77  void visit(const FormulaInfo &info) override;
78  void visit(const SparseHistInfo &info) override;
79 
80  protected:
84  H5::DataSet appendVectorInfo(const VectorInfo &info);
85 
97  H5::DataSet appendStat(const Info &info, int rank, hsize_t *dims,
98  const double *data);
99 
107  void addMetaData(H5::DataSet &loc, const char *name,
108  const std::vector<const char *> &values);
109 
117  void addMetaData(H5::DataSet &loc, const char *name,
118  const std::vector<std::string> &values);
119 
127  void addMetaData(H5::DataSet &loc, const char *name,
128  const std::string &value);
129 
137  void addMetaData(H5::DataSet &loc, const char *name, double value);
138 
139  protected:
140  const std::string fname;
141  const hsize_t timeChunk;
142  const bool enableDescriptions;
143  const bool enableFormula;
144 
145  std::stack<H5::Group> path;
146 
147  unsigned dumpCount;
148  H5::H5File h5File;
149 };
150 
151 std::unique_ptr<Output> initHDF5(
152  const std::string &filename,unsigned chunking = 10,
153  bool desc = true, bool formulas = true);
154 
155 } // namespace Stats
156 
157 #endif // __BASE_STATS_HDF5_HH__
types.hh
data
const char data[]
Definition: circlebuf.test.cc:42
Stats::VectorInfo
Definition: info.hh:156
Stats::Vector2dInfo
Definition: info.hh:218
std::vector< const char * >
Stats::Hdf5::endGroup
void endGroup() override
Definition: hdf5.cc:120
Stats::Hdf5::~Hdf5
~Hdf5()
Definition: hdf5.cc:71
Stats::Hdf5
Definition: hdf5.hh:54
output.hh
Stats::Hdf5::dumpCount
unsigned dumpCount
Definition: hdf5.hh:147
Stats::VectorDistInfo
Definition: info.hh:200
Stats::DistInfo
Definition: info.hh:193
Stats::Hdf5::appendVectorInfo
H5::DataSet appendVectorInfo(const VectorInfo &info)
Helper function to append vector stats and set their metadata.
Definition: hdf5.cc:196
Stats::Hdf5::begin
void begin() override
Definition: hdf5.cc:77
Stats::Hdf5::appendStat
H5::DataSet appendStat(const Info &info, int rank, hsize_t *dims, const double *data)
Helper function to append an n-dimensional double stat to the file.
Definition: hdf5.cc:217
Stats::Hdf5::Hdf5
Hdf5()=delete
Stats::Hdf5::end
void end() override
Definition: hdf5.cc:86
Stats::Hdf5::enableDescriptions
const bool enableDescriptions
Definition: hdf5.hh:142
Stats::SparseHistInfo
Definition: info.hh:251
Stats::Output
Definition: output.hh:58
Stats::Hdf5::fname
const std::string fname
Definition: hdf5.hh:140
Stats::Hdf5::path
std::stack< H5::Group > path
Definition: hdf5.hh:145
name
const std::string & name()
Definition: trace.cc:50
Stats::Info
Definition: info.hh:69
Stats::FormulaInfo
Definition: info.hh:237
Stats::Hdf5::visit
void visit(const ScalarInfo &info) override
Definition: hdf5.cc:127
Stats::Hdf5::valid
bool valid() const override
Definition: hdf5.cc:94
Stats::initHDF5
std::unique_ptr< Output > initHDF5(const std::string &filename, unsigned chunking, bool desc, bool formulas)
Definition: hdf5.cc:316
output.hh
Stats::ScalarInfo
Definition: info.hh:148
Stats
Definition: statistics.cc:61
Stats::Hdf5::timeChunk
const hsize_t timeChunk
Definition: hdf5.hh:141
Stats::Hdf5::enableFormula
const bool enableFormula
Definition: hdf5.hh:143
Stats::Hdf5::h5File
H5::H5File h5File
Definition: hdf5.hh:148
Stats::Hdf5::beginGroup
void beginGroup(const char *name) override
Definition: hdf5.cc:101
Stats::Hdf5::addMetaData
void addMetaData(H5::DataSet &loc, const char *name, const std::vector< const char * > &values)
Helper function to add a string vector attribute to a stat.
Definition: hdf5.cc:272

Generated on Wed Sep 30 2020 14:02:08 for gem5 by doxygen 1.8.17