| 55 | |
| 56 | public: |
| 57 | explicit UnaryOp(const MatrixBase<_Child>& child, const _UnaryFunctor& functor = _UnaryFunctor()) |
| 58 | : child_(child.derived()), functor_(functor) |
| 59 | {} |
| 60 | |
| 61 | __host__ __device__ CUMAT_STRONG_INLINE Index rows() const { return child_.rows(); } |
| 62 | __host__ __device__ CUMAT_STRONG_INLINE Index cols() const { return child_.cols(); } |
nothing calls this directly
no outgoing calls
no test coverage detected