| 173 | } |
| 174 | |
| 175 | std::vector<float> read_f32_file(const std::filesystem::path & path) { |
| 176 | return read_typed_file<float>(path); |
| 177 | } |
| 178 | |
| 179 | std::vector<int32_t> read_i32_file(const std::filesystem::path & path) { |
| 180 | return read_typed_file<int32_t>(path); |
no outgoing calls
no test coverage detected