Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

H5Easy: Support creating extensible datasets with Eigen::ArrayXXd #1072

Open
nickanthony-dgl opened this issue Jan 15, 2025 · 0 comments
Open

Comments

@nickanthony-dgl
Copy link

I am trying to create a dataset that can later be resized like so:

Eigen::ArrayXXd data = generateData();
auto dset = H5Easy::dump(f,"/myData", data, std::vector<size_t>{0, 0}, dataOptions); // Initialize an extensible dataset

I get the following error message:

...\include\highfive\h5easy_bits\H5Easy_public.hpp(109): error C2039: 'dump_extend': is not a member of 'H5Easy::detail::io_impl<Eigen::ArrayXXd,void>'
  ...\include\highfive\h5easy_bits/H5Easy_Eigen.hpp(22): note: see declaration of 'H5Easy::detail::io_impl<Eigen::ArrayXXd,void>'
  ...\include\highfive\h5easy_bits/H5Easy_public.hpp(109): note: the template instantiation context (the oldest one first) is
  myproject/mysource.cpp(139): note: see reference to function template instantiation 'HighFive::DataSet H5Easy::dump<Eigen::ArrayXXd>(HighFive::File &,const std::string &,const T &,const std::vector<size_t,std::allocator<size_t>> &,const H5Easy::DumpOptions &)' being compiled
          with
          [
              T=Eigen::ArrayXXd
          ]
...\include\highfive\h5easy_bits\H5Easy_public.hpp(109): error C3861: 'dump_extend': identifier not found

Possibly related to #1018

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant