| 295 | } |
| 296 | |
| 297 | void Graph::TimeProfilingDoExec(Node *curNode) { |
| 298 | if ((device_->verbosity() > 0) && (curNode->op_name_ != "Waiting") && |
| 299 | (iteration_ >= device_->skip_iteration())) |
| 300 | device_->TimeProfilingDoExec(std::move(curNode->op_), 0, curNode); |
| 301 | else |
| 302 | device_->DoExec(std::move(curNode->op_), 0); |
| 303 | } |
| 304 | |
| 305 | void Graph::EvaluateTimeElapsed(const TimePoint &start) { |
| 306 | if ((device_->verbosity() > 0) && (iteration_ > device_->skip_iteration())) { |
nothing calls this directly
no test coverage detected