Home
last modified time | relevance | path

Searched refs:compile_count (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/subzero/pydir/
Dwasm-run-torture-tests.py120 compile_count = 0 variable
128 global compile_count
162 compile_count += 1
228 .format(run_count, compile_count - run_count,
/external/tensorflow/tensorflow/compiler/jit/
Dxla_compilation_cache.cc187 static bool IsMegamorphic(int64 compile_count, int64 execution_count) { in IsMegamorphic() argument
194 return compile_count > kCompileThreshold && in IsMegamorphic()
195 execution_count < kMinExecutionsPerCompile * compile_count; in IsMegamorphic()
281 IsMegamorphic(/*compile_count=*/it->second.compile_count, in CompileImpl()
351 it->second.compile_count++; in CompileImpl()
354 << it->second.compile_count in CompileImpl()
Dxla_compilation_cache.h168 int64 compile_count = 0; member