Skip to content

Commit

Permalink
Change noisy (and useless) XLA log line to VLOG
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 720218649
  • Loading branch information
rhundt authored and Google-ML-Automation committed Jan 27, 2025
1 parent 1a94880 commit a58a042
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
1 change: 1 addition & 0 deletions xla/service/llvm_ir/BUILD
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ cc_library(
"@com_google_absl//absl/algorithm:container",
"@com_google_absl//absl/base:core_headers",
"@com_google_absl//absl/hash",
"@com_google_absl//absl/log",
"@com_google_absl//absl/log:check",
"@com_google_absl//absl/strings",
"@com_google_absl//absl/strings:str_format",
Expand Down
6 changes: 3 additions & 3 deletions xla/service/llvm_ir/llvm_command_line_options.cc
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ limitations under the License.
#include "absl/base/thread_annotations.h"
#include "absl/hash/hash.h"
#include "absl/log/check.h"
#include "absl/log/log.h"
#include "absl/strings/str_format.h"
#include "absl/strings/string_view.h"
#include "absl/synchronization/mutex.h"
#include "llvm/Support/CommandLine.h"
#include "tsl/platform/logging.h"

namespace xla {
namespace llvm_ir {
Expand All @@ -47,8 +47,8 @@ LLVMCommandLineOptionsLock::LLVMCommandLineOptionsLock(
// Check if previous client used a different set of LLVM options,
// (re)initialize if that's the case.
if (client_signature_ != active_client_signature_) {
LOG(INFO) << "XLA (re)initializing LLVM with options fingerprint: "
<< client_signature_;
VLOG(1) << "XLA (re)initializing LLVM with options fingerprint: "
<< client_signature_;
VLOG(1) << "XLA LLVM options:";
CHECK_EQ(num_active_clients_, 0);

Expand Down

0 comments on commit a58a042

Please sign in to comment.