mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-07-08 08:07:06 +00:00
[CK Tile] Rule-based configuration generation in CK Dispatcher codegen (#8157) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Motivation The CK Tile Dispatcher code generation for CK Tile Profiler relies on flat JSON files to list the generated configurations. This approach has the following problems - The JSON files are verbose - The JSON files get easily out of sync with the CK Builder .config files from which they were generated from. - The JSON file based configuration make it hard to list explicitly the rules that govern the instance generation. ## Technical Details Replaced the JSON files with a rule based configuration. To preserve the existing functionality, the `profiler` and the `tests` instance sets are generated directly from the CK Builder config files. The JSON config files are removed from source control, and the "on-the-fly" generation guarantees that the Dispatcher codegen uses up to date configurations. This is PR introduces six different rule sets for the CK Tile Dispatcher code generation 1. `profiler`: matches with the old JSON set of profiler configurations. 2. `tests`: matches with the old JSON set of tests configurations. 3. `full`: full configuration set created from a rule-based config selection 4. `full-tests`: a subset of `full` for generating configurations for convolution integration tests. 5. `tiny`: a subset of `full-tests` to produce the minimal set of configurations to test the Dispatcher codegen. 6. `default`: the default rules, which corresponds to the existing heuristic rules for configuration selection. This ensures that ML based kernel selection doesn't get broken. The main use of the `full` rule set is to define a reasonable solution space for the possible implicit GEMM configurations. We start from the configurations that allowed by the device architecture. The `full` rule set defines the relevant tile sizes for each convolution direction. From the tile size we have a curated mapping to the number of waves over the different GEMM axes, i.e., we describe how many waves each GEMM dimensions corresponds to. The GEMM-K wave tile dimension can be computed from the other parameters and does not need to be listed explicitly. An orthogonal axis to the tiling strategy is the vectorization strategy. This mainly defined by the data type and hardware as in general, we want to use the maximum possible load widths. The maximum sizes for each convolution direction variant are defined by the implicit GEMM matrix dimensions. For cases where have a low number of channels per convolution group, we need smaller vector load sizes. These are captured by the `VecStrategy` enumeration in the codegen rules. The problem with the rule based configuration selection is that we "over generate" configurations. The old JSON configurations compose approximately 25% of all configuration that the `full` rule set creates. The additional configurations are valid, but they many not provide any performance benefits. Hence, we keep the `profiler` and `tests` rule set for now to avoid building an excessive amount configurations by default. The `full` rule set can be taken into use by specifying CMake configuration flag `-D DISPATCHER_RULE_SET=full`. By default, the `tests` rule set is used, i.e., we don't change the existing bahaviour. ## Test Plan Added a new stage in the CI/CD pipeline that ensures the Dispatcher codegen rules are up to date. Otherwise the functionality is covered by the existing CI/CD tests. There are no functional changes to the convolution kernels. Only how the different instances are generated. ## Test Result If the CK Tile conv instances build without errors, the Dispatcher codegen is generating valid code. If all tests in CI/CD pipeline are passing, the Dispatcher codegen generates valid instances. ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
569 lines
19 KiB
Python
569 lines
19 KiB
Python
#!/usr/bin/env python3
|
||
|
||
# Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
||
# SPDX-License-Identifier: MIT
|
||
|
||
"""
|
||
"default" rule set for Grouped Convolution Tile Configurations.
|
||
|
||
This is the original, hand-curated heuristic rule set (small deterministic
|
||
per-tile wave/warp/vector maps + hardcoded pipelines). It is preserved here
|
||
verbatim and selected via ``get_default_configs(rule_set="default")``.
|
||
|
||
"""
|
||
|
||
from typing import Dict, List, Tuple
|
||
|
||
# =============================================================================
|
||
# Tile Configurations (Single Source of Truth)
|
||
# =============================================================================
|
||
|
||
# Common tile configurations used across variants
|
||
# Format: (tile_m, tile_n, tile_k)
|
||
# CRITICAL: tile_m MUST equal wave_m × warp_tile_m (TileGemmShape constraint)
|
||
# Only tiles that successfully compile are included
|
||
COMMON_TILES: List[Tuple[int, int, int]] = [
|
||
# Using warp_tile [16,16,16]: tile_m = wave_m × 16
|
||
(16, 64, 64), # 1 × 16 = 16, wave=(1,4,1)
|
||
(32, 64, 64), # 2 × 16 = 32, wave=(2,2,1)
|
||
(64, 64, 64), # 4 × 16 = 64, wave=(4,1,1)
|
||
# (128, 64, 64), # 8 × 16 = 128, wave=(8,2,1) - EXCLUDED: Compile error
|
||
# Using warp_tile [32,32,16]: tile_m = wave_m × 32
|
||
(32, 128, 64), # 1 × 32 = 32, wave=(1,4,1)
|
||
(64, 128, 64), # 2 × 32 = 64, wave=(2,2,1)
|
||
(128, 128, 64), # 4 × 32 = 128, wave=(4,4,1) - NEW!
|
||
# Note: 256x64x64 excluded - compilation issues
|
||
# Using warp_tile [16,16,32]: tile_m = wave_m × 16
|
||
(16, 64, 128), # 1 × 16 = 16, wave=(1,4,1)
|
||
(32, 64, 128), # 2 × 16 = 32, wave=(2,2,1)
|
||
(64, 64, 128), # 4 × 16 = 64, wave=(4,1,1)
|
||
(128, 64, 128), # 8 × 16 = 128, wave=(8,2,1) - NEW!
|
||
# Note: Excluded tiles:
|
||
# - 128x64x64: wave=8x2x1, warp=16x16x16 - compile error
|
||
# - 32x128x128, 64x128x128, 128x128x128, 256x128x128 (warp_tile 32x32x32) - compv4 issues
|
||
# - 256x64x64, 256x128x128 - arch filter rejection
|
||
]
|
||
|
||
# Wave configurations per tile
|
||
# Key: (tile_m, tile_n, tile_k) -> (wave_m, wave_n, wave_k)
|
||
# Constraint: tile_m == wave_m × warp_tile_m
|
||
# Only use approved wave configs from arch_specs.json: [1,4,1], [2,2,1], [4,1,1], [8,2,1], [4,4,1]
|
||
TILE_TO_WAVE: Dict[Tuple[int, int, int], Tuple[int, int, int]] = {
|
||
# warp_tile [16,16,16]
|
||
(16, 64, 64): (1, 4, 1),
|
||
(32, 64, 64): (2, 2, 1),
|
||
(64, 64, 64): (4, 1, 1),
|
||
# warp_tile [32,32,16]
|
||
(32, 128, 64): (1, 4, 1),
|
||
(64, 128, 64): (2, 2, 1),
|
||
(128, 128, 64): (4, 4, 1), # NEW - balanced 4x4 wave
|
||
# warp_tile [16,16,32]
|
||
(16, 64, 128): (1, 4, 1),
|
||
(32, 64, 128): (2, 2, 1),
|
||
(64, 64, 128): (4, 1, 1),
|
||
(128, 64, 128): (8, 2, 1), # NEW
|
||
}
|
||
|
||
# Warp tile configurations (must match arch_specs.json gfx950 bf16 approved list)
|
||
# Key: (tile_m, tile_n, tile_k) -> (warp_m, warp_n, warp_k)
|
||
TILE_TO_WARP: Dict[Tuple[int, int, int], Tuple[int, int, int]] = {
|
||
# warp_tile [16,16,16]
|
||
(16, 64, 64): (16, 16, 16),
|
||
(32, 64, 64): (16, 16, 16),
|
||
(64, 64, 64): (16, 16, 16),
|
||
# warp_tile [32,32,16]
|
||
(32, 128, 64): (32, 32, 16),
|
||
(64, 128, 64): (32, 32, 16),
|
||
(128, 128, 64): (32, 32, 16), # NEW
|
||
# warp_tile [16,16,32]
|
||
(16, 64, 128): (16, 16, 32),
|
||
(32, 64, 128): (16, 16, 32),
|
||
(64, 64, 128): (16, 16, 32),
|
||
(128, 64, 128): (16, 16, 32), # NEW
|
||
}
|
||
|
||
# Vector sizes per tile (for memory operations)
|
||
# Key: (tile_m, tile_n, tile_k) -> (vec_a, vec_b, vec_c)
|
||
TILE_TO_VECTOR: Dict[Tuple[int, int, int], Tuple[int, int, int]] = {
|
||
(16, 64, 64): (4, 8, 8),
|
||
(32, 64, 64): (4, 8, 8),
|
||
(64, 64, 64): (4, 8, 8),
|
||
(32, 128, 64): (4, 8, 8),
|
||
(64, 128, 64): (4, 8, 8),
|
||
(128, 128, 64): (4, 8, 8),
|
||
(16, 64, 128): (4, 8, 8),
|
||
(32, 64, 128): (4, 8, 8),
|
||
(64, 64, 128): (4, 8, 8),
|
||
(128, 64, 128): (4, 8, 8),
|
||
}
|
||
|
||
# =============================================================================
|
||
# Pipeline Variant Suffixes (single source of truth)
|
||
# =============================================================================
|
||
# Empirically verified valid (pipeline, wave_mode, has_dsb, has_si) combinations
|
||
# observed in the 2D and 3D bf16 gfx950 benchmark CSVs. 30 entries total per ndim.
|
||
# Each tuple: (pipeline, wave_mode, has_dsb, has_si)
|
||
# wave_mode: "intrawave" | "interwave"
|
||
# has_dsb: 1 if "_dsb" suffix present (double smem buffer), else 0
|
||
# has_si: 1 if "_si" suffix present (store immediate), else 0
|
||
PIPELINE_VARIANTS: List[Tuple[str, str, int, int]] = [
|
||
# basic_v1: both intra/inter × {∅, dsb, si, dsb_si} = 8 combos
|
||
("basic_v1", "intrawave", 0, 0),
|
||
("basic_v1", "intrawave", 1, 0),
|
||
("basic_v1", "intrawave", 0, 1),
|
||
("basic_v1", "intrawave", 1, 1),
|
||
("basic_v1", "interwave", 0, 0),
|
||
("basic_v1", "interwave", 1, 0),
|
||
("basic_v1", "interwave", 0, 1),
|
||
("basic_v1", "interwave", 1, 1),
|
||
# compv3: intrawave × {∅, dsb, si, dsb_si} = 4 combos
|
||
("compv3", "intrawave", 0, 0),
|
||
("compv3", "intrawave", 1, 0),
|
||
("compv3", "intrawave", 0, 1),
|
||
("compv3", "intrawave", 1, 1),
|
||
# compv4: intrawave × {dsb, dsb_si} only = 2 combos
|
||
("compv4", "intrawave", 1, 0),
|
||
("compv4", "intrawave", 1, 1),
|
||
# compv5: intrawave × {∅, dsb, si, dsb_si} = 4 combos
|
||
("compv5", "intrawave", 0, 0),
|
||
("compv5", "intrawave", 1, 0),
|
||
("compv5", "intrawave", 0, 1),
|
||
("compv5", "intrawave", 1, 1),
|
||
# compv6: intrawave × {∅, dsb, si, dsb_si} = 4 combos
|
||
("compv6", "intrawave", 0, 0),
|
||
("compv6", "intrawave", 1, 0),
|
||
("compv6", "intrawave", 0, 1),
|
||
("compv6", "intrawave", 1, 1),
|
||
# mem: both intra/inter × {∅, dsb, si, dsb_si} = 8 combos
|
||
("mem", "intrawave", 0, 0),
|
||
("mem", "intrawave", 1, 0),
|
||
("mem", "intrawave", 0, 1),
|
||
("mem", "intrawave", 1, 1),
|
||
("mem", "interwave", 0, 0),
|
||
("mem", "interwave", 1, 0),
|
||
("mem", "interwave", 0, 1),
|
||
("mem", "interwave", 1, 1),
|
||
# wavelet: intrawave only, single LDS (DoubleSmemBuffer=false hardcoded)
|
||
("wavelet", "intrawave", 0, 0),
|
||
]
|
||
|
||
|
||
def iter_pipeline_variants(pipelines: List[str] = None):
|
||
"""Iterate (pipeline, wave_mode, has_dsb, has_si) tuples, optionally filtered.
|
||
|
||
Args:
|
||
pipelines: optional list of pipeline names to keep. If None, yield all.
|
||
"""
|
||
if pipelines is None:
|
||
for entry in PIPELINE_VARIANTS:
|
||
yield entry
|
||
return
|
||
keep = set(pipelines)
|
||
for entry in PIPELINE_VARIANTS:
|
||
if entry[0] in keep:
|
||
yield entry
|
||
|
||
|
||
# Valid pipelines per variant
|
||
# All 8 pipelines (basic_v1, mem, compv3-6, comp_async, basic_async_v1) successfully
|
||
# build and run for all variants in both 2D and 3D (verified via 10_test_all_pipelines.py)
|
||
VARIANT_PIPELINES: Dict[str, List[str]] = {
|
||
"forward": [
|
||
"basic_v1",
|
||
"mem",
|
||
"compv3",
|
||
"compv4",
|
||
"compv5",
|
||
"compv6",
|
||
"comp_async",
|
||
"basic_async_v1",
|
||
"wavelet",
|
||
],
|
||
"bwd_data": [
|
||
"basic_v1",
|
||
"mem",
|
||
"compv3",
|
||
"compv4",
|
||
"compv5",
|
||
"compv6",
|
||
"comp_async",
|
||
"basic_async_v1",
|
||
"wavelet",
|
||
],
|
||
"bwd_weight": [
|
||
"basic_v1",
|
||
"mem",
|
||
"compv3",
|
||
"compv4",
|
||
"compv5",
|
||
"compv6",
|
||
"comp_async",
|
||
"basic_async_v1",
|
||
"wavelet",
|
||
],
|
||
}
|
||
|
||
# Tiles that support compv4 pipeline
|
||
# compv4 has stricter requirements due to double buffering and LDS constraints
|
||
# Pattern: only warp_tile [16,16,16] or [16,16,32] work with compv4
|
||
# Large warp_tile [32,32,16] and wave [8,2,1] fail arch validation for compv4
|
||
COMPV4_COMPATIBLE_TILES: List[Tuple[int, int, int]] = [
|
||
# warp_tile [16,16,16] - all work with compv4
|
||
(16, 64, 64),
|
||
(32, 64, 64),
|
||
(64, 64, 64),
|
||
# (128, 64, 64), # Excluded: wave=8x2x1 fails for compv4
|
||
# warp_tile [16,16,32] - all work with compv4
|
||
(16, 64, 128),
|
||
(32, 64, 128),
|
||
(64, 64, 128),
|
||
# (128, 64, 128), # Excluded: wave=8x2x1 fails for compv4
|
||
]
|
||
|
||
# Backward weight tiles (very restricted due to transpose_tile2d constraints)
|
||
# Testing all tiles to verify which ones actually work
|
||
BWD_WEIGHT_TILES: List[Tuple[int, int, int]] = [
|
||
# warp_tile [16,16,16]
|
||
(16, 64, 64), # Known working config
|
||
(32, 64, 64), # Test
|
||
(64, 64, 64), # Test
|
||
# warp_tile [32,32,16]
|
||
(32, 128, 64), # Test
|
||
(64, 128, 64), # Test
|
||
(128, 128, 64), # Test
|
||
# warp_tile [16,16,32]
|
||
(16, 64, 128), # Test
|
||
(32, 64, 128), # Test
|
||
(64, 64, 128), # Test
|
||
(128, 64, 128), # Test
|
||
]
|
||
|
||
# =============================================================================
|
||
# Shared Validation Rules
|
||
# =============================================================================
|
||
# These functions are the single source of truth for validation rules
|
||
# for onvolution code generation.
|
||
|
||
# --- Vector size validation ---
|
||
|
||
WARP_SIZE = 64
|
||
|
||
|
||
def is_valid_vector_size(vec: int) -> bool:
|
||
"""AMD GPUs only support vector widths 1, 2, 4, 8, 16."""
|
||
return vec == 1 or vec % 2 == 0
|
||
|
||
|
||
def check_vectors(vec_a: int, vec_b: int, vec_c: int) -> bool:
|
||
"""Check all three vector sizes are valid (1 or even)."""
|
||
return all(is_valid_vector_size(v) for v in (vec_a, vec_b, vec_c))
|
||
|
||
|
||
# --- Tile coverage validation ---
|
||
|
||
|
||
def check_warp_coverage(
|
||
tile_m: int, tile_n: int, tile_k: int,
|
||
vec_a: int, vec_b: int,
|
||
variant: str = "forward", warp_size: int = 64,
|
||
) -> bool:
|
||
"""Check tile dims don't exceed single-warp vector load coverage.
|
||
|
||
The A-tile dimension is direction-aware:
|
||
Forward / bwd_weight: tile_m is the A-tile dim
|
||
Backward data: tile_k is the A-tile dim
|
||
"""
|
||
a_tile_dim = tile_k if variant == "bwd_data" else tile_m
|
||
if a_tile_dim > warp_size * vec_a:
|
||
return False
|
||
if tile_n > warp_size * vec_b:
|
||
return False
|
||
return True
|
||
|
||
def check_tile_coverage(
|
||
tile_m: int, tile_n: int, tile_k: int,
|
||
vec_a: int, vec_b: int, pipeline_version: str,
|
||
block_size: int = 64,
|
||
) -> bool:
|
||
"""Check if each thread has some data to read.
|
||
|
||
Return false when there is more threads than data to read.
|
||
"""
|
||
if pipeline_version == "compv6":
|
||
# V6 pipeline computes A/B_Buffer_Load_Inst_Num as integer division;
|
||
# if either is 0 the scheduler divides by zero at compile time.
|
||
# tile_k=32 compv6 instances are valid as long as both load-instruction counts stay >= 1.
|
||
if (tile_m * tile_k) // (block_size * vec_a) < 1:
|
||
return False
|
||
if (tile_n * tile_k) // (block_size * vec_b) < 1:
|
||
return False
|
||
return True
|
||
|
||
|
||
def get_warp_size(gpu_target: str) -> int:
|
||
"""Return warp size for the given GPU target.
|
||
|
||
Accepts either a family prefix (gfx9, gfx11, gfx12) or a full arch string
|
||
(gfx942, gfx950, gfx1201, ...). gfx9xx => 64, everything else => 32.
|
||
"""
|
||
if gpu_target.startswith("gfx9"):
|
||
return 64
|
||
return 32
|
||
|
||
|
||
def check_wmma_instance(
|
||
warp_size: int,
|
||
k_per_block: int,
|
||
k_warp: int,
|
||
k_per_xdl: int,
|
||
m_per_xdl: int,
|
||
dtype: str,
|
||
) -> bool:
|
||
"""Check WMMA-specific constraints for warp_size=32 targets (gfx11/gfx12).
|
||
|
||
Returns False (skip instance) when any constraint is violated.
|
||
"""
|
||
if warp_size != 32:
|
||
return True
|
||
if k_per_xdl < 32 and dtype != "float":
|
||
return False
|
||
if k_warp * k_per_xdl > k_per_block:
|
||
return False
|
||
if m_per_xdl == 32:
|
||
return False
|
||
return True
|
||
|
||
|
||
def check_wmma_native_warp_tile(warp_size: int, streamk_enabled: bool) -> bool:
|
||
"""Check native instance warp_tile constraints for warp_size=32 targets.
|
||
|
||
Returns False (skip instance) when streamk is enabled.
|
||
"""
|
||
if warp_size == 32 and streamk_enabled:
|
||
return False
|
||
return True
|
||
|
||
|
||
def check_bwd_data_vec_coverage(
|
||
tile_m: int, tile_n: int, tile_k: int,
|
||
warp_m: int, warp_n: int, warp_k: int,
|
||
vec_a: int, vec_b: int, warp_size: int = 64,
|
||
) -> bool:
|
||
"""Bwd_data: vector width must not exceed elements per thread per tile slice."""
|
||
block_size = warp_size * warp_m * warp_n * warp_k
|
||
if vec_a > (tile_m * tile_k) // block_size:
|
||
return False
|
||
if vec_b > (tile_n * tile_k) // block_size:
|
||
return False
|
||
return True
|
||
|
||
|
||
# --- Pipeline-scheduler restrictions ---
|
||
|
||
INTERWAVE_PIPELINES = {"basic_v1", "mem"} # Only these support interwave
|
||
|
||
|
||
def is_valid_pipeline_scheduler(pipeline: str, scheduler: str) -> bool:
|
||
"""Check pipeline+scheduler combo is valid.
|
||
|
||
Only 'mem' and 'basic_v1' pipelines support interwave; all compute
|
||
pipelines (compv3/v4/v5/v6/async) only support intrawave.
|
||
"""
|
||
if scheduler == "interwave" and pipeline not in INTERWAVE_PIPELINES:
|
||
return False
|
||
return True
|
||
|
||
|
||
# --- Pipeline-variant restrictions ---
|
||
|
||
UNSUPPORTED_VARIANT_PIPELINES = {
|
||
"bwd_weight": {"compv5"},
|
||
"bwd_data": {"compv5"},
|
||
}
|
||
|
||
|
||
def is_valid_pipeline_for_variant(pipeline: str, variant: str) -> bool:
|
||
"""Check pipeline is supported for the given conv variant.
|
||
|
||
Backward weight and backward data reject compv5 due to transpose_tile2d /
|
||
get_length issues.
|
||
"""
|
||
blocked = UNSUPPORTED_VARIANT_PIPELINES.get(variant, set())
|
||
return pipeline not in blocked
|
||
|
||
|
||
# --- Stream-K restrictions ---
|
||
|
||
|
||
def is_streamk_valid_for_variant(variant: str) -> bool:
|
||
"""Stream-K is only supported for backward weight."""
|
||
return variant == "bwd_weight"
|
||
|
||
|
||
# =============================================================================
|
||
# Tile Registration Validation
|
||
# =============================================================================
|
||
|
||
|
||
def validate_tile_config(tile_m: int, tile_n: int, tile_k: int) -> bool:
|
||
"""Check if a tile configuration is valid and registered."""
|
||
tile_key = (tile_m, tile_n, tile_k)
|
||
return (
|
||
tile_key in TILE_TO_WAVE
|
||
and tile_key in TILE_TO_WARP
|
||
and tile_key in TILE_TO_VECTOR
|
||
)
|
||
|
||
|
||
def get_tile_full_config(tile_m: int, tile_n: int, tile_k: int) -> dict:
|
||
"""Get complete configuration for a tile size.
|
||
|
||
Returns:
|
||
dict with keys: wave_m, wave_n, wave_k, warp_m, warp_n, warp_k, vec_a, vec_b, vec_c
|
||
or None if tile not found
|
||
"""
|
||
tile_key = (tile_m, tile_n, tile_k)
|
||
if not validate_tile_config(tile_m, tile_n, tile_k):
|
||
return None
|
||
|
||
wave_m, wave_n, wave_k = TILE_TO_WAVE[tile_key]
|
||
warp_m, warp_n, warp_k = TILE_TO_WARP[tile_key]
|
||
vec_a, vec_b, vec_c = TILE_TO_VECTOR[tile_key]
|
||
|
||
return {
|
||
"tile_m": tile_m,
|
||
"tile_n": tile_n,
|
||
"tile_k": tile_k,
|
||
"wave_m": wave_m,
|
||
"wave_n": wave_n,
|
||
"wave_k": wave_k,
|
||
"warp_m": warp_m,
|
||
"warp_n": warp_n,
|
||
"warp_k": warp_k,
|
||
"vec_a": vec_a,
|
||
"vec_b": vec_b,
|
||
"vec_c": vec_c,
|
||
}
|
||
|
||
|
||
# =============================================================================
|
||
# Summary Statistics
|
||
# =============================================================================
|
||
|
||
|
||
def get_configs(
|
||
arch: str,
|
||
variants: List,
|
||
ndims: List[int],
|
||
datatypes: List[str] = None,
|
||
) -> List:
|
||
"""Build all available configs for the "default" (hand-curated) rule set.
|
||
|
||
Unified rule-set entry point used by
|
||
``unified_grouped_conv_codegen.get_default_configs``. Small deterministic
|
||
per-tile wave/warp maps + hardcoded pipelines, ported verbatim from the
|
||
initial rule-based codegen. Configs are dtype-agnostic (``datatype`` left as
|
||
None) so ``generate_all`` compiles each for every requested datatype,
|
||
matching the original behavior. ``datatypes`` is accepted for interface
|
||
uniformity but not used by this rule set.
|
||
"""
|
||
from unified_grouped_conv_codegen import (
|
||
GroupedConvVariant,
|
||
GroupedConvTraitConfig,
|
||
GroupedConvKernelConfig,
|
||
TileConfig,
|
||
)
|
||
|
||
def _expand(tile_list):
|
||
out = []
|
||
for tm, tn, tk in tile_list:
|
||
key = (tm, tn, tk)
|
||
if key in TILE_TO_WAVE and key in TILE_TO_WARP:
|
||
wm, wn, _wk = TILE_TO_WAVE[key]
|
||
wtm, wtn, wtk = TILE_TO_WARP[key]
|
||
out.append((tm, tn, tk, wm, wn, wtm, wtn, wtk))
|
||
return out
|
||
|
||
fwd_bwd_data_tiles = _expand(COMMON_TILES)
|
||
bwd_weight_tiles = _expand(BWD_WEIGHT_TILES)
|
||
|
||
configs: List = []
|
||
|
||
for variant in variants:
|
||
if variant == GroupedConvVariant.BACKWARD_WEIGHT:
|
||
tile_configs = bwd_weight_tiles
|
||
pipelines = [("compv3", "cshuffle"), ("mem", "default")]
|
||
two_stage_flags = [False, True]
|
||
elif variant == GroupedConvVariant.BACKWARD_DATA:
|
||
tile_configs = fwd_bwd_data_tiles
|
||
pipelines = [("compv3", "cshuffle"), ("mem", "default")]
|
||
two_stage_flags = [False]
|
||
else:
|
||
tile_configs = fwd_bwd_data_tiles
|
||
pipelines = [("compv3", "cshuffle"), ("compv4", "cshuffle")]
|
||
two_stage_flags = [False]
|
||
|
||
for ndim in ndims:
|
||
for pipeline, epilogue in pipelines:
|
||
for (tm, tn, tk, wm, wn, wtm, wtn, wtk) in tile_configs:
|
||
if pipeline == "compv4" and (tm, tn, tk) not in COMPV4_COMPATIBLE_TILES:
|
||
continue
|
||
for two_stage in two_stage_flags:
|
||
adj_tk = tk * 2 if pipeline == "compv4" else tk
|
||
trait = GroupedConvTraitConfig(
|
||
pipeline=pipeline,
|
||
scheduler="intrawave",
|
||
epilogue=epilogue,
|
||
double_smem_buffer=(pipeline == "compv4"),
|
||
pad_m=True,
|
||
pad_n=True,
|
||
pad_k=True,
|
||
two_stage=two_stage,
|
||
)
|
||
if not trait.is_valid():
|
||
continue
|
||
config = GroupedConvKernelConfig(
|
||
tile=TileConfig(
|
||
tile_m=tm,
|
||
tile_n=tn,
|
||
tile_k=adj_tk,
|
||
warp_m=wm,
|
||
warp_n=wn,
|
||
warp_k=1,
|
||
warp_tile_m=wtm,
|
||
warp_tile_n=wtn,
|
||
warp_tile_k=wtk,
|
||
),
|
||
trait=trait,
|
||
variant=variant,
|
||
ndim_spatial=ndim,
|
||
arch=arch,
|
||
)
|
||
if config.is_valid_for_arch():
|
||
configs.append(config)
|
||
|
||
return configs
|
||
|
||
|
||
def print_summary():
|
||
"""Print summary of available tile configurations."""
|
||
print("=" * 80)
|
||
print("Grouped Convolution Tile Configurations (Single Source of Truth)")
|
||
print("=" * 80)
|
||
print(f"Total tiles: {len(COMMON_TILES)}")
|
||
print(f"Backward weight tiles: {len(BWD_WEIGHT_TILES)}")
|
||
print()
|
||
print("Tile sizes (M×N×K):")
|
||
for tile in COMMON_TILES:
|
||
m, n, k = tile
|
||
wave = TILE_TO_WAVE[tile]
|
||
warp = TILE_TO_WARP[tile]
|
||
print(
|
||
f" {m:3}×{n:3}×{k:3} wave={wave[0]}×{wave[1]}×{wave[2]} warp={warp[0]}×{warp[1]}×{warp[2]}"
|
||
)
|
||
print("=" * 80)
|
||
|
||
|
||
if __name__ == "__main__":
|
||
print_summary()
|