MUDA
Loading...
Searching...
No Matches
matrix_map_info.h
1#pragma once
2
3namespace muda
4{
8template <typename T, int M, int N>
10{
11 public:
12 T* begin;
13 int outer_stride;
14 int inner_stride;
15};
16
17template <typename T, int M, int N>
19{
20 public:
21 const T* begin;
22 int outer_stride;
23 int inner_stride;
24};
25} // namespace muda
Definition matrix_map_info.h:19
For MapMatrix e.g. Eigen::Map< ... >
Definition matrix_map_info.h:10