Cast char values to int so that their numeric value are printed.
| 39 | { |
| 40 | // Cast char values to int so that their numeric value are printed. |
| 41 | inline int make_printable(int8_t value) |
| 42 | { |
| 43 | return value; |
| 44 | } |
| 45 | |
| 46 | inline std::string make_printable(const arm_compute::WeightFormat wf) |
| 47 | { |
no test coverage detected