| 306 | __host__ __device__ CUMAT_STRONG_INLINE Index batches() const { return child_.batches(); } |
| 307 | |
| 308 | __device__ CUMAT_STRONG_INLINE Scalar coeff(Index row, Index col, Index batch, Index index) const |
| 309 | { |
| 310 | return functor::CastFunctor<SourceType, TargetType>::cast(child_.derived().coeff(row, col, batch, index)); |
| 311 | } |
| 312 | }; |
| 313 | |
| 314 |