From 7817368f9c23eb2c41fbcb4578e4689ea47bd333 Mon Sep 17 00:00:00 2001 From: Ryan Spring Date: Tue, 26 Nov 2024 17:09:45 -0800 Subject: [PATCH] comments --- doc/dev/python_scheduling/autotune_inner_reduction.py | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/doc/dev/python_scheduling/autotune_inner_reduction.py b/doc/dev/python_scheduling/autotune_inner_reduction.py index e714cd238ee..c43a20f5767 100644 --- a/doc/dev/python_scheduling/autotune_inner_reduction.py +++ b/doc/dev/python_scheduling/autotune_inner_reduction.py @@ -70,11 +70,21 @@ class FUSION(Enum): @dataclass(unsafe_hash=True) class InnerReductionConfiguration: + # The vectorization factor for inner reduction domain. vectorize_factor: int = 1 + # The unroll factor for the outer iteration domain. unroll_factor: int = 1 + # The grid size for the outer iteration domain. + # If grdim > 1, then godim corresponds with y axis of the grid. + # Otherwise, it is the x axis of the grid. godim: int = -1 + # The grid size for the inner reduction domain. It corresponds + # with x axis of the grid when it is >1. grdim: int = -1 + # The x axis of CTA. It corresponds with inner reduction domain. bdimx: int = -1 + # The y axis of CTA. It corresponds with outer reduction domain. + # If it is non-zero, then there are multiple reduction per CTA. bdimy: int = -1 def __init__(self, selected_fusion):