Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions onnxruntime/core/session/inference_session.cc
Original file line number Diff line number Diff line change
Expand Up @@ -2943,6 +2943,8 @@ Status InferenceSession::Run(const RunOptions& run_options,
<< cached_execution_provider_for_graph_replay_.Type()
<< " CUDA Graph for this model with tag: " << run_options.run_tag
<< " with graph annotation id: " << graph_annotation_id;
// log evaluation start to trace logging provider
env.GetTelemetryProvider().LogEvaluationStart(session_id_);
ORT_RETURN_IF_ERROR_SESSIONID_(cached_execution_provider_for_graph_replay_.ReplayGraph(graph_annotation_id));
} else {
InlinedVector<IExecutionProvider*> exec_providers_to_stop;
Expand Down
Loading