| 76 | } |
| 77 | |
| 78 | void |
| 79 | PerformanceRecorder::regTimeRatio(BlasFunction fn, double ratio) |
| 80 | { |
| 81 | int id = static_cast<int>(fn); |
| 82 | |
| 83 | records_[id].timeRatio += ratio; |
| 84 | records_[id].nrRatios++; |
| 85 | } |
| 86 | |
| 87 | gflops_t |
| 88 | PerformanceRecorder::etalonAvgPerf(BlasFunction fn) |