From badb11c0b7afff803fd28776a1a459e65db5df09 Mon Sep 17 00:00:00 2001 From: Reed Wanderman-Milne Date: Fri, 15 Nov 2024 19:01:10 -0800 Subject: [PATCH] Disable scatter_determinism_expander as it causes failure on internal test. PiperOrigin-RevId: 697064519 --- xla/debug_options_flags.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xla/debug_options_flags.cc b/xla/debug_options_flags.cc index 0ce60d0bc6e57..1ee18ccd26c70 100644 --- a/xla/debug_options_flags.cc +++ b/xla/debug_options_flags.cc @@ -293,7 +293,7 @@ DebugOptions DefaultDebugOptionsIgnoringFlags() { opts.set_xla_enable_fast_math(false); opts.set_xla_gpu_experimental_parallel_collective_overlap_limit(1); opts.set_xla_pjrt_allow_auto_layout_in_hlo(false); - opts.set_xla_gpu_enable_scatter_determinism_expander(true); + opts.set_xla_gpu_enable_scatter_determinism_expander(false); return opts; }