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 cb0060b commit dd969f8
Showing 1 changed file with 3 additions and 3 deletions.
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 dd969f8

Please sign in to comment.