| 237 | } // namespace |
| 238 | |
| 239 | Maybe<double> GetComputeTime(const vm::OpCallInstructionPolicy& operand) { |
| 240 | const static json time_dataset = LoadTimeDataset(); |
| 241 | if (!time_dataset.empty()) { return GetDatasetComputeTime(time_dataset, operand); } |
| 242 | return GetComputeComplexity(operand); |
| 243 | } |
| 244 | |
| 245 | } // namespace remat |
| 246 |
no test coverage detected