| 22 | }; |
| 23 | |
| 24 | struct backend_run { |
| 25 | std::string backend; |
| 26 | double encode_ms = 0.0; |
| 27 | double final_ms = 0.0; |
| 28 | std::vector<metric_row> encoder_rows; |
| 29 | std::vector<metric_row> final_rows; |
| 30 | }; |
| 31 | |
| 32 | static std::string shape_to_string(const std::vector<int> & shape) { |
| 33 | std::string s; |
nothing calls this directly
no outgoing calls
no test coverage detected