lin
config.hpp
Go to the documentation of this file.
1 // vim: set tabstop=2:softtabstop=2:shiftwidth=2:expandtab
2 
7 #ifndef LIN_CORE_CONFIG_HPP_
8 #define LIN_CORE_CONFIG_HPP_
9 
10 #include <cstddef>
11 
20 #ifndef LIN_NO_CASSERT
21  #include <cassert>
22  #define LIN_ASSERT(x) assert(x)
23 #else
24  #define LIN_ASSERT(x)
25 #endif
26 
27 namespace lin {
28 
34 
35 } // namespace lin
36 
37 #endif
std::size_t size_t
Type tracking tensor dimensions and sizing.
Definition: config.hpp:33
Definition: config.hpp:27