From 0554bc9bf1e1d7636f29ad0eb1b6300dc998ac00 Mon Sep 17 00:00:00 2001 From: William Moses Date: Tue, 30 Sep 2025 10:49:50 -0500 Subject: [PATCH 1/2] no dus to pad --- src/CompileOptions.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/CompileOptions.jl b/src/CompileOptions.jl index e8cac78be6..f1d1fe30e2 100644 --- a/src/CompileOptions.jl +++ b/src/CompileOptions.jl @@ -12,9 +12,9 @@ communication. wrap_comm::Int = 0 extend_comm::Int = 0 dus_to_pad_manual_comp_comm::Int = 0 # 2 - dus_to_pad_comm::Int = 1 + dus_to_pad_comm::Int = 0 concat_two_operands_comm::Int = 0 - concat_to_pad_comm::Int = 1 + concat_to_pad_comm::Int = 0 extend_to_pad_comm::Int = 1 wrap_to_pad_comm::Int = 1 end From e57a8ce34770a257dd1dc04e35865b6de4e94e54 Mon Sep 17 00:00:00 2001 From: William Moses Date: Tue, 30 Sep 2025 13:36:05 -0500 Subject: [PATCH 2/2] Update CompileOptions.jl --- src/CompileOptions.jl | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/CompileOptions.jl b/src/CompileOptions.jl index f1d1fe30e2..2356c5bd5e 100644 --- a/src/CompileOptions.jl +++ b/src/CompileOptions.jl @@ -8,15 +8,15 @@ communication. @kwdef struct OptimizeCommunicationOptions periodic_concat::Int = 0 rotate_comm::Int = 0 - rotate_to_pad_comm::Int = 1 + rotate_to_pad_comm::Int = 0 wrap_comm::Int = 0 extend_comm::Int = 0 dus_to_pad_manual_comp_comm::Int = 0 # 2 dus_to_pad_comm::Int = 0 concat_two_operands_comm::Int = 0 concat_to_pad_comm::Int = 0 - extend_to_pad_comm::Int = 1 - wrap_to_pad_comm::Int = 1 + extend_to_pad_comm::Int = 0 + wrap_to_pad_comm::Int = 0 end function Base.String(options::OptimizeCommunicationOptions)