mgcpp
A C++ Math Library Based on CUDA
forward.hpp
Go to the documentation of this file.
1 
2 // Copyright RedPortal, mujjingun 2017 - 2018.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE or copy at
5 // http://www.boost.org/LICENSE_1_0.txt)
6 
7 #ifndef _MGCPP_MATRIX_FORWARD_HPP_
8 #define _MGCPP_MATRIX_FORWARD_HPP_
9 
10 #include <cstddef>
11 
12 namespace mgcpp {
13 template <typename MatrixType, typename Type>
14 class matrix;
15 
16 template <typename DenseMatrixType, typename Type>
17 class dense_matrix;
18 
19 template <typename Type, typename Alloc>
20 class device_matrix;
21 } // namespace mgcpp
22 
23 #endif
Definition: adapter_base.hpp:12
Definition: forward.hpp:14
Definition: dense_matrix.hpp:15
Definition: device_matrix.hpp:28