From ff685e2345b5b547703e4c9b9596b779471526c7 Mon Sep 17 00:00:00 2001 From: Daniel Garcia-Sanchez Date: Mon, 10 Aug 2020 22:19:09 +0200 Subject: [PATCH] Remove hdf5.inst.in --- source/base/CMakeLists.txt | 1 - source/base/hdf5.inst.in | 120 ------------------------------------- 2 files changed, 121 deletions(-) delete mode 100644 source/base/hdf5.inst.in diff --git a/source/base/CMakeLists.txt b/source/base/CMakeLists.txt index 5a56310fe7..2a924e7fb6 100644 --- a/source/base/CMakeLists.txt +++ b/source/base/CMakeLists.txt @@ -127,7 +127,6 @@ SET(_inst function_time.inst.in incremental_function.inst.in geometric_utilities.inst.in - hdf5.inst.in mpi.inst.in mpi_noncontiguous_partitioner.inst.in partitioner.inst.in diff --git a/source/base/hdf5.inst.in b/source/base/hdf5.inst.in deleted file mode 100644 index 49136fa771..0000000000 --- a/source/base/hdf5.inst.in +++ /dev/null @@ -1,120 +0,0 @@ -// --------------------------------------------------------------------- -// -// Copyright (C) 2018 - 2019 by the deal.II authors -// -// This file is part of the deal.II library. -// -// The deal.II library is free software; you can use it, redistribute -// it, and/or modify it under the terms of the GNU Lesser General -// Public License as published by the Free Software Foundation; either -// version 2.1 of the License, or (at your option) any later version. -// The full text of the license can be found in the file LICENSE.md at -// the top level directory of deal.II. -// -// --------------------------------------------------------------------- - - -for (number : REAL_AND_COMPLEX_SCALARS) - { - template number HDF5Object::get_attribute( - const std::string &attr_name) const; - template void HDF5Object::set_attribute( - const std::string &attr_name, number value); - - template std::vector DataSet::read>(); - template Vector DataSet::read>(); - template FullMatrix DataSet::read>(); - - template std::vector DataSet::read_selection>( - const std::vector &coordinates); - template Vector DataSet::read_selection>( - const std::vector &coordinates); - - template std::vector DataSet::read_hyperslab>( - const std::vector &offset, const std::vector &count); - template Vector DataSet::read_hyperslab>( - const std::vector &offset, const std::vector &count); - template FullMatrix DataSet::read_hyperslab>( - const std::vector &offset, const std::vector &count); - - template std::vector DataSet::read_hyperslab>( - const std::vector &data_dimensions, - const std::vector &offset, - const std::vector &stride, - const std::vector &count, - const std::vector &block); - template Vector DataSet::read_hyperslab>( - const std::vector &data_dimensions, - const std::vector &offset, - const std::vector &stride, - const std::vector &count, - const std::vector &block); - template FullMatrix DataSet::read_hyperslab>( - const std::vector &data_dimensions, - const std::vector &offset, - const std::vector &stride, - const std::vector &count, - const std::vector &block); - - template void DataSet::read_none(); - - template void DataSet::write>( - const std::vector &data); - template void DataSet::write>(const Vector &data); - template void DataSet::write>( - const FullMatrix &data); - - template void DataSet::write_selection>( - const std::vector &data, const std::vector &coordinates); - template void DataSet::write_selection>( - const Vector &data, const std::vector &coordinates); - - template void DataSet::write_hyperslab>( - const std::vector & data, - const std::vector &offset, - const std::vector &count); - template void DataSet::write_hyperslab>( - const Vector & data, - const std::vector &offset, - const std::vector &count); - template void DataSet::write_hyperslab>( - const FullMatrix & data, - const std::vector &offset, - const std::vector &count); - - template void DataSet::write_hyperslab>( - const std::vector & data, - const std::vector &data_dimensions, - const std::vector &offset, - const std::vector &stride, - const std::vector &count, - const std::vector &block); - template void DataSet::write_hyperslab>( - const Vector & data, - const std::vector &data_dimensions, - const std::vector &offset, - const std::vector &stride, - const std::vector &count, - const std::vector &block); - template void DataSet::write_hyperslab>( - const FullMatrix & data, - const std::vector &data_dimensions, - const std::vector &offset, - const std::vector &stride, - const std::vector &count, - const std::vector &block); - - template void DataSet::write_none(); - - template DataSet Group::create_dataset( - const std::string &name, const std::vector &dimensions) const; - - template void Group::write_dataset>( - const std::string &name, const std::vector &data) const; - - template void Group::write_dataset>( - const std::string &name, const Vector &data) const; - - template void Group::write_dataset>( - const std::string &name, const FullMatrix &data) const; - } -- 2.39.5