14 #include <type_traits>
21 # pragma warning(push)
22 # pragma warning(disable : 26450)
23 # pragma warning(disable : 26495)
24 # pragma warning(disable : 26812)
26 #include "Eigen/Dense"
27 #include "unsupported/Eigen/CXX11/Tensor"
48 namespace EigenCompat {
53 template <
class EigenClass,
class ResizeableBase = ::Eigen::PlainObjectBase<EigenClass>>
54 using CanResize = ::std::is_base_of<ResizeableBase, EigenClass>;
56 template <
class EigenClass>
57 typename ::std::enable_if<CanResize<EigenClass>::value>::type
DoEigenResize(EigenClass& e,
59 ::Eigen::Index cols) {
64 template <
class EigenClass>
65 typename ::std::enable_if<!CanResize<EigenClass>::value>::type
DoEigenResize(EigenClass&,
71 template <
class EigenClass>
73 const int numDims = e.NumDimensions;
74 const auto& dims = e.dimensions();
77 std::vector<Dimensions_t> hdims;
78 Dimensions_t sz = (numDims > 0) ? 1 : 0;
79 for (
int i = 0; i < numDims; ++i) {
80 auto val = gsl::narrow<Dimensions_t>(dims[i]);
Describe the dimensions of a ioda::Attribute or ioda::Variable.
Common preprocessor definitions used throughout IODA.
See the Eigen3 project for stuff in this namespace.
::std::is_base_of< ResizeableBase, EigenClass > CanResize
Dimensions getTensorDimensions(EigenClass &e)
typename ::std::enable_if< CanResize< EigenClass >::value >::type DoEigenResize(EigenClass &e, ::Eigen::Index rows, ::Eigen::Index cols)
ioda_Eigen_Resize
Do we want to auto-resize the Eigen object on read to fit the data being read?
Describes the dimensions of an Attribute or Variable.
std::vector< Dimensions_t > dimsCur
The dimensions of the data.
Dimensions_t dimensionality
The dimensionality (rank) of the data.
std::vector< Dimensions_t > dimsMax
This must always equal dimsCur for Attribute.