| 151 | } |
| 152 | |
| 153 | void profiler::on_batch_evaluate_begin(model* m) |
| 154 | { |
| 155 | const auto& c = m->get_execution_context(); |
| 156 | prof_region_begin(("batch eval " + std::to_string(c.get_step())).c_str(), |
| 157 | prof_colors[1], |
| 158 | m_sync); |
| 159 | } |
| 160 | |
| 161 | void profiler::on_batch_evaluate_end(model* m) |
| 162 | { |
nothing calls this directly
no test coverage detected