| 33 | class TuneTool { |
| 34 | public: |
| 35 | static void Query(float* eval, float* threshold) { |
| 36 | TuningResolver resolver; |
| 37 | *eval = resolver.EvalRatio(); |
| 38 | *threshold = resolver.ThresholdRatio(); |
| 39 | } |
| 40 | }; |
| 41 | |
| 42 | } // namespace ruy |
nothing calls this directly
no test coverage detected