ritsuko
Helper utilities for ArtifactDB C++ code
Loading...
Searching...
No Matches
load_dataset.hpp File Reference

Helper functions to load datasets. More...

#include <string>
#include <vector>
#include <stdexcept>
#include "H5Cpp.h"
#include "get_name.hpp"
#include "Stream1dStringDataset.hpp"
#include "Stream1dNumericDataset.hpp"
#include "as_numeric_datatype.hpp"
#include "_strings.hpp"
Include dependency graph for load_dataset.hpp:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Namespaces

namespace  ritsuko
 Assorted helper functions for parsing and validation.
 
namespace  ritsuko::hdf5
 Assorted helper functions for HDF5 parsing.
 

Functions

std::string ritsuko::hdf5::load_scalar_string_dataset (const H5::DataSet &handle)
 
std::vector< std::string > ritsuko::hdf5::load_1d_string_dataset (const H5::DataSet &handle, hsize_t full_length, hsize_t buffer_size)
 
std::vector< std::string > ritsuko::hdf5::load_1d_string_dataset (const H5::DataSet &handle, hsize_t buffer_size)
 
template<typename Type_ >
Type_ ritsuko::hdf5::load_scalar_numeric_dataset (const H5::DataSet &handle)
 
template<typename Type_ >
std::vector< Type_ > ritsuko::hdf5::load_1d_numeric_dataset (const H5::DataSet &handle, hsize_t full_length, hsize_t buffer_size)
 
template<typename Type_ >
std::vector< Type_ > ritsuko::hdf5::load_1d_numeric_dataset (const H5::DataSet &handle, hsize_t buffer_size)
 

Detailed Description

Helper functions to load datasets.