| 67 | __host__ __device__ CUMAT_STRONG_INLINE Index batches() const { return batches_; } |
| 68 | |
| 69 | __device__ CUMAT_STRONG_INLINE Scalar coeff(Index row, Index col, Index batch, Index linear) const |
| 70 | { |
| 71 | return functor_(row, col, batch); |
| 72 | } |
| 73 | }; |
| 74 | |
| 75 | namespace functor |
nothing calls this directly
no outgoing calls
no test coverage detected