| 148 | #if PRINT_TENSOR_LIMIT |
| 149 | template <typename T> |
| 150 | void print_simpletensor(const SimpleTensor<T> &tensor, |
| 151 | const std::string &title, |
| 152 | const IOFormatInfo::PrintRegion ®ion = IOFormatInfo::PrintRegion::NoPadding) |
| 153 | { |
| 154 | if (tensor.num_elements() < PRINT_TENSOR_LIMIT) |
| 155 | { |
| 156 | std::cout << title << ":" << std::endl; |
| 157 | std::cout << prettify_tensor(tensor, IOFormatInfo{region}); |
| 158 | } |
| 159 | } |
| 160 | #endif // PRINT_TENSOR_LIMIT |
| 161 | } // namespace test |
| 162 | } // namespace arm_compute |
nothing calls this directly
no test coverage detected