| 14 | namespace |
| 15 | { |
| 16 | class PermutationSignFunctor |
| 17 | { |
| 18 | public: |
| 19 | typedef int ReturnType; |
| 20 | __device__ CUMAT_STRONG_INLINE int operator()(const int& x, Index row, Index col, Index batch) const |
| 21 | { |
| 22 | return (row+1 != x) ? -1 : 1; |
| 23 | } |
| 24 | }; |
| 25 | } |
| 26 | |
| 27 | namespace internal |