From 9ba7f358ec9bed6c46153e54798819ad0d2a7ef6 Mon Sep 17 00:00:00 2001 From: Frederik Gossen Date: Tue, 17 Dec 2024 11:51:53 -0800 Subject: [PATCH] Add missing default for `xla_gpu_triton_gemm_disable_reduced_precision_reduction` PiperOrigin-RevId: 707191594 --- xla/debug_options_flags.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/xla/debug_options_flags.cc b/xla/debug_options_flags.cc index 7cb0e29ad9615..48e3883ffdcb1 100644 --- a/xla/debug_options_flags.cc +++ b/xla/debug_options_flags.cc @@ -213,6 +213,7 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() { opts.set_xla_gpu_auto_spmd_partitioning_memory_budget_gb(0); opts.set_xla_gpu_auto_spmd_partitioning_memory_budget_ratio(1.1); + opts.set_xla_gpu_triton_gemm_disable_reduced_precision_reduction(false); opts.set_xla_gpu_unsafe_pipelined_loop_annotator(false); opts.set_xla_gpu_copy_insertion_use_region_analysis(false);