aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/jit
diff options
context:
space:
mode:
authorGravatar Sanjoy Das <sanjoy@google.com>2018-09-05 12:20:07 -0700
committerGravatar TensorFlower Gardener <gardener@tensorflow.org>2018-09-05 12:24:41 -0700
commitd6e95e5de2041110530ea7b1fe36b77c9469b1ff (patch)
tree517f84ae45e0ceb6862e28a9371f1ba8ce235e5c /tensorflow/compiler/jit
parentd3a63ee12b1c8910cf71e87a81e59f998144ce36 (diff)
Make logging less verbose
I want --vmodule=xla_compilation_cache=1 to print only the most essential things. PiperOrigin-RevId: 211676846
Diffstat (limited to 'tensorflow/compiler/jit')
-rw-r--r--tensorflow/compiler/jit/xla_compilation_cache.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/jit/xla_compilation_cache.cc b/tensorflow/compiler/jit/xla_compilation_cache.cc
index ef6b0e67d3..dcb0b3240a 100644
--- a/tensorflow/compiler/jit/xla_compilation_cache.cc
+++ b/tensorflow/compiler/jit/xla_compilation_cache.cc
@@ -259,7 +259,7 @@ Status XlaCompilationCache::CompileImpl(
const XlaCompiler::CompileOptions& compile_options,
bool compile_single_op) {
CHECK_NE(executable, nullptr);
- VLOG(1) << "XlaCompilationCache::Compile " << DebugString();
+ VLOG(2) << "XlaCompilationCache::Compile " << DebugString();
if (VLOG_IS_ON(2)) {
VLOG(2) << "num_inputs=" << ctx->num_inputs()
@@ -310,7 +310,7 @@ Status XlaCompilationCache::CompileImpl(
// cache eviction.
mutex_lock entry_lock(entry->mu);
if (!entry->compiled) {
- VLOG(1) << "Compilation cache miss for signature: "
+ VLOG(2) << "Compilation cache miss for signature: "
<< SignatureDebugString(signature);
tensorflow::Env* env = tensorflow::Env::Default();
const uint64 compile_start_us = env->NowMicros();