Use INFO logging for device deprecation, for easier filtering.
PiperOrigin-RevId: 313414703 Change-Id: I2d496e7ae3381b469d7da8eda55a8886a9936a24
This commit is contained in:
parent
a67ee929f5
commit
624390fc19
@ -395,12 +395,11 @@ static void ShowXlaDeviceDeprecationWarning(
|
|||||||
if (absl::StrContains(compilation_device_name, "CPU") ||
|
if (absl::StrContains(compilation_device_name, "CPU") ||
|
||||||
absl::StrContains(compilation_device_name, "GPU")) {
|
absl::StrContains(compilation_device_name, "GPU")) {
|
||||||
absl::call_once(once, [] {
|
absl::call_once(once, [] {
|
||||||
LOG(WARNING)
|
LOG(INFO) << "XLA_GPU and XLA_CPU devices are deprecated and will be "
|
||||||
<< "XLA_GPU and XLA_CPU devices are deprecated and will be "
|
"removed in subsequent releases. Instead, use either "
|
||||||
"removed in subsequent releases. Instead, use either "
|
"@tf.function(experimental_compile=True) for must-compile "
|
||||||
"@tf.function(experimental_compile=True) for must-compile "
|
"semantics, or run with TF_XLA_FLAGS=--tf_xla_auto_jit=2 "
|
||||||
"semantics, or run with TF_XLA_FLAGS=--tf_xla_auto_jit=2 "
|
"for auto-clustering best-effort compilation.";
|
||||||
"for auto-clustering best-effort compilation.";
|
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user