| 8 | #include <vector> |
| 9 | |
| 10 | struct checkpoint_stat { |
| 11 | std::string name; |
| 12 | std::string shape; |
| 13 | compare_result diff; |
| 14 | }; |
| 15 | |
| 16 | static std::string format_shape(const std::vector<int> & shape) { |
| 17 | std::string out = "["; |
nothing calls this directly
no outgoing calls
no test coverage detected