| 54 | } |
| 55 | |
| 56 | void BenchmarkParams::Set(const BenchmarkParams& other) { |
| 57 | for (const auto& param : params_) { |
| 58 | const BenchmarkParam* other_param = other.GetParam(param.first); |
| 59 | if (other_param == nullptr) continue; |
| 60 | param.second->Set(*other_param); |
| 61 | } |
| 62 | } |
| 63 | |
| 64 | } // namespace benchmark |
| 65 | } // namespace tflite |
no test coverage detected