| 198 | const RightType& right() const { return right_; } |
| 199 | |
| 200 | __host__ __device__ CUMAT_STRONG_INLINE Index rows() const |
| 201 | { |
| 202 | if (TransposedOutput) |
| 203 | return TransposedRight ? right_.rows() : right_.cols(); |
| 204 | else |
| 205 | return TransposedLeft ? left_.cols() : left_.rows(); |
| 206 | } |
| 207 | __host__ __device__ CUMAT_STRONG_INLINE Index cols() const |
| 208 | { |
| 209 | if (TransposedOutput) |