gem5 v24.0.0.0
Loading...
Searching...
No Matches
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/compiler.hh"
49#include "base/output.hh"
50#include "base/stats/output.hh"
51#include "base/stats/types.hh"
52
53namespace gem5
54{
55
56namespace statistics
57{
58
59class Hdf5 : public Output
60{
61 public:
62 Hdf5(const std::string &file, unsigned chunking, bool desc, bool formulas);
63
64 ~Hdf5();
65
66 Hdf5() = delete;
67 Hdf5(const Hdf5 &other) = delete;
68
69 public: // Output interface
70 void begin() override;
71 void end() override;
72 bool valid() const override;
73
74 void beginGroup(const char *name) override;
75 void endGroup() override;
76
77 void visit(const ScalarInfo &info) override;
78 void visit(const VectorInfo &info) override;
79 void visit(const DistInfo &info) override;
80 void visit(const VectorDistInfo &info) override;
81 void visit(const Vector2dInfo &info) override;
82 void visit(const FormulaInfo &info) override;
83 void visit(const SparseHistInfo &info) override;
84
85 protected:
89 H5::DataSet appendVectorInfo(const VectorInfo &info);
90
102 H5::DataSet appendStat(const Info &info, int rank, hsize_t *dims,
103 const double *data);
104
112 void addMetaData(H5::DataSet &loc, const char *name,
113 const std::vector<const char *> &values);
114
122 void addMetaData(H5::DataSet &loc, const char *name,
123 const std::vector<std::string> &values);
124
132 void addMetaData(H5::DataSet &loc, const char *name,
133 const std::string &value);
134
142 void addMetaData(H5::DataSet &loc, const char *name, double value);
143
144 protected:
145 const std::string fname;
146 const hsize_t timeChunk;
148 const bool enableFormula;
149
150 std::stack<H5::Group> path;
151
152 unsigned dumpCount;
153 H5::H5File h5File;
154};
155
156std::unique_ptr<Output> initHDF5(
157 const std::string &filename,unsigned chunking = 10,
158 bool desc = true, bool formulas = true);
159
160} // namespace statistics
161} // namespace gem5
162
163#endif // __BASE_STATS_HDF5_HH__
const char data[]
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:223
bool valid() const override
Definition hdf5.cc:100
const bool enableFormula
Definition hdf5.hh:148
const bool enableDescriptions
Definition hdf5.hh:147
const std::string fname
Definition hdf5.hh:145
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:287
std::stack< H5::Group > path
Definition hdf5.hh:150
void end() override
Definition hdf5.cc:92
H5::H5File h5File
Definition hdf5.hh:153
Hdf5(const Hdf5 &other)=delete
H5::DataSet appendVectorInfo(const VectorInfo &info)
Helper function to append vector stats and set their metadata.
Definition hdf5.cc:202
void begin() override
Definition hdf5.cc:83
void endGroup() override
Definition hdf5.cc:126
void visit(const ScalarInfo &info) override
Definition hdf5.cc:133
const hsize_t timeChunk
Definition hdf5.hh:146
void beginGroup(const char *name) override
Definition hdf5.cc:107
STL vector class.
Definition stl.hh:37
std::unique_ptr< Output > initHDF5(const std::string &filename, unsigned chunking, bool desc, bool formulas)
Definition hdf5.cc:331
Copyright (c) 2024 - Pranith Kumar Copyright (c) 2020 Inria All rights reserved.
Definition binary32.hh:36
const std::string & name()
Definition trace.cc:48

Generated on Tue Jun 18 2024 16:24:01 for gem5 by doxygen 1.11.0