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_VECTOR_FORWARD_HPP_
8 #define _MGCPP_VECTOR_FORWARD_HPP_
9 
10 #include <cstddef>
11 
12 namespace mgcpp {
13 template <typename VectorType, typename Type>
14 struct vector_base;
15 
16 template <typename DenseVecType, typename Type>
17 class dense_vector;
18 
19 template <typename Type, typename Alloc>
20 class device_vector;
21 } // namespace mgcpp
22 
23 #endif
Definition: adapter_base.hpp:12
Definition: dense_vector.hpp:15
Definition: forward.hpp:14
Definition: device_vector.hpp:25