| 330 | using MatrixType = _VectorType; |
| 331 | |
| 332 | static __host__ __device__ CUMAT_STRONG_INLINE MatrixType asDiagonal(const _VectorType& v) |
| 333 | { |
| 334 | return v; //default implementation |
| 335 | } |
| 336 | }; |
| 337 | |
| 338 | template<typename _Child> |
nothing calls this directly
no outgoing calls
no test coverage detected