ALPSCore reference
config.hpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 1998-2018 ALPS Collaboration. See COPYRIGHT.TXT
3  * All rights reserved. Use is subject to license terms. See LICENSE.TXT
4  * For use in publications, see ACKNOWLEDGE.TXT
5  */
6 
7 #ifndef ALPS_HDF5_CONFIG_HPP
8 #define ALPS_HDF5_CONFIG_HPP
9 
10 #include <alps/config.hpp>
11 
12 // if defined, no threading libraries are included
13 // #define ALPS_SINGLE_THREAD
14 
15 // do not throw an error on accessing a not existing paht in a hdf5 file
16 // #define ALPS_HDF5_READ_GREEDY
17 
18 // do not throw an error if closing a hdf5 gets dirty (e.g in Python)
19 // #define ALPS_HDF5_CLOSE_GREEDY
20 
21 // blocksize in compressed hdf5. Default: 32
22 #ifndef ALPS_HDF5_SZIP_BLOCK_SIZE
23  #define ALPS_HDF5_SZIP_BLOCK_SIZE 32
24 #endif
25 
26 #endif
27