| 139 | |
| 140 | template <typename T> |
| 141 | inline std::string to_string(const SimpleTensor<T> &tensor) |
| 142 | { |
| 143 | std::stringstream ss; |
| 144 | ss << tensor; |
| 145 | return ss.str(); |
| 146 | } |
| 147 | |
| 148 | #if PRINT_TENSOR_LIMIT |
| 149 | template <typename T> |
no test coverage detected