| 11 | #include <vector> |
| 12 | |
| 13 | struct metric_row { |
| 14 | std::string tensor; |
| 15 | std::string shape; |
| 16 | float max_abs = 0.0f; |
| 17 | float mean_abs = 0.0f; |
| 18 | float mean_rel = 0.0f; |
| 19 | float cosine = 0.0f; |
| 20 | bool measured = false; |
| 21 | std::string note; |
| 22 | }; |
| 23 | |
| 24 | struct backend_run { |
| 25 | std::string backend; |
nothing calls this directly
no outgoing calls
no test coverage detected