| 130 | |
| 131 | public: |
| 132 | explicit TransposeOp(const MatrixBase<_Derived>& child) |
| 133 | : matrix_(child.derived()) |
| 134 | {} |
| 135 | |
| 136 | __host__ __device__ CUMAT_STRONG_INLINE Index rows() const { return matrix_.cols(); } |
| 137 | __host__ __device__ CUMAT_STRONG_INLINE Index cols() const { return matrix_.rows(); } |
nothing calls this directly
no outgoing calls
no test coverage detected