MCPcopy Create free account
hub / github.com/DeepRec-AI/DeepRec / UpdateGraphBuildTime

Function UpdateGraphBuildTime

tensorflow/core/common_runtime/metrics.cc:124–129  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

122}
123
124void UpdateGraphBuildTime(const uint64 running_time_usecs) {
125 if (running_time_usecs > 0) {
126 build_graph_calls->GetCell()->IncrementBy(1);
127 build_graph_time_usecs->GetCell()->IncrementBy(running_time_usecs);
128 }
129}
130
131void UpdateXlaCompilationTime(const uint64 compilation_time_usecs) {
132 if (compilation_time_usecs > 0) {

Callers 1

BuildGraphMethod · 0.85

Calls 2

IncrementByMethod · 0.45
GetCellMethod · 0.45

Tested by

no test coverage detected