mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-06-28 18:56:59 +00:00
[CK_TILE] Integrate CK Tile Dispatcher code generation into CK Tile Profiler (#7284) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## Motivation CK Tile is going to be delivered to hipDNN via CK Dispatcher. Currently the CK Tile Profiler using CK Builder for generating the profiled instances from the configuration files that identify the instances that old CK exposes. We need to replace this instance generation with the CK Tile Dispatcher codegen. ## Technical Details The old CK Profiler config files are converted to JSON files that the CK Tile Dispatcher can digest. The conversion script for configurations is stored to source control in case we need to update the JSON configurations later. The dispatcher generates instance libraries per conv direction (fwd, bwd data, and bwd weight) that are linked to the CK Profiler executable. I also implemented codegne for the stream-K and depthwise conv instances. The proposed solution replaces the CK Builder codegen with the CK Tile Dispatcher codegen. There are two new methods that are exposed via the dispatcher backend - `is_supported` - required to enabled the profiler workflow where we check the applicability of the kernel instance before running it. - `get_instance_string` - this mainly for verification. This provide the CK Builder instance string for verifying that the old CK Builder based profiler and the new CK Tile Dispatcher based profiler have the same instances. The rules that limit the generated instances are now collected to a single location under the dispacther. The CK Builder codegen uses these, which ensures that the two codegen pipelines are in sync. The next step (different PR) is to remove the CK Builder codegen pipeline altogether. ## Test Plan Verified that the old CK Builder based profiler and the new CK Tile Dispatcher based profiler have the same instances, that is, the Dispatcher based codgen can generate the same instances as the old CK Builder. ## Submission Checklist - [x] Look over the contributing guidelines at https://github.com/ROCm/ROCm/blob/develop/CONTRIBUTING.md#pull-requests.
144 lines
2.8 KiB
Plaintext
144 lines
2.8 KiB
Plaintext
# Compiled Object files
|
|
*.slo
|
|
*.lo
|
|
*.o
|
|
*.obj
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
*.ipch
|
|
|
|
# Compiled Dynamic libraries
|
|
*.so
|
|
*.dylib
|
|
*.dll
|
|
|
|
# Fortran module files
|
|
*.mod
|
|
|
|
# Compiled Static libraries
|
|
*.lai
|
|
*.la
|
|
*.a
|
|
*.lib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
|
|
# vim tags
|
|
tags
|
|
.tags
|
|
.*.swp
|
|
|
|
# Editors
|
|
.vscode
|
|
|
|
# CMake formatting configuration (local)
|
|
.cmake-format.yaml
|
|
|
|
# Cline
|
|
.cline*
|
|
|
|
# build-in-source directory (see exceptions below)
|
|
build*
|
|
|
|
# emacs temporary/backup files
|
|
.\#*
|
|
\#*\#
|
|
*~
|
|
|
|
# GDB temporary files
|
|
.gdb_history
|
|
install.dir*
|
|
|
|
# documentation artifacts
|
|
_build/
|
|
_images/
|
|
_static/
|
|
_templates/
|
|
_toc.yml
|
|
_doxygen/
|
|
docs/doxygen/html
|
|
docs/doxygen/xml
|
|
|
|
# JetBrains IDE (see build* exceptions below)
|
|
.idea/
|
|
cmake-build*/
|
|
build*/
|
|
|
|
# LSP configuration
|
|
.clangd
|
|
|
|
# User-defined CMake presets
|
|
CMakeUserPresets.json
|
|
|
|
# Python virtualenv
|
|
.venv/
|
|
|
|
# Python cache
|
|
__pycache__/
|
|
|
|
# Cache directories
|
|
.cache/
|
|
.ck_tile_cache/
|
|
ck_tile_cache/
|
|
**/kernel_cache/
|
|
**/.kernel_cache/
|
|
|
|
# Dispatcher kernel cache (user-generated, can be large)
|
|
dispatcher/**/kernel_cache/
|
|
dispatcher/**/.kernel_cache/
|
|
dispatcher/**/cached_kernels/
|
|
dispatcher/**/*.hsaco
|
|
dispatcher/**/*.co
|
|
|
|
# Dispatcher generated JSON exports
|
|
dispatcher/**/*_kernels.json
|
|
dispatcher/**/dispatcher_kernels.json
|
|
|
|
# Generated test data
|
|
test_data/*
|
|
!test_data/*.py
|
|
!test_data/*.sh
|
|
!test_data/requirements.txt
|
|
|
|
# Exceptions to build* patterns above
|
|
# The experimental/builder directory should be tracked despite matching build*
|
|
!experimental/builder
|
|
!experimental/builder/**
|
|
experimental/grouped_convolution_tile_instances/instances/*
|
|
!experimental/grouped_convolution_tile_instances/instances/*.in
|
|
!experimental/grouped_convolution_tile_instances/instances/*.inc
|
|
!experimental/grouped_convolution_tile_instances/instances/*.hpp
|
|
experimental/grouped_convolution_tile_instances/*.inc
|
|
# Heuristics: benchmark data (never in git)
|
|
dispatcher/heuristics/data/
|
|
|
|
# Heuristics: experimental/training artifacts (exclude from git)
|
|
dispatcher/heuristics/models/**/oof_predictions.parquet
|
|
dispatcher/heuristics/models/**/cv_metrics_*.json
|
|
dispatcher/heuristics/models/**/eval_report.json
|
|
dispatcher/heuristics/models/**/feature_importances_*.json
|
|
dispatcher/heuristics/models/**/model_tflops_ihem.lgbm
|
|
dispatcher/heuristics/models/**/model_tflops_log.lgbm
|
|
dispatcher/heuristics/models/**/model_tflops_log_big.lgbm
|
|
|
|
# Heuristics: keep in git (production model files):
|
|
# models/{op}_{dtype}_{arch}/model_tflops.lgbm
|
|
# models/{op}_{dtype}_{arch}/model_latency.lgbm
|
|
# models/{op}_{dtype}_{arch}/model_bandwidth.lgbm
|
|
# models/{op}_{dtype}_{arch}/feature_spec.json
|
|
# models/{op}_{dtype}_{arch}/train_manifest.json
|
|
|
|
# Heuristics: logs and caches
|
|
dispatcher/heuristics/*.log
|
|
dispatcher/heuristics/__pycache__/
|
|
dispatcher/heuristics/tests/__pycache__/
|
|
dispatcher/heuristics/.pytest_cache/
|
|
|
|
# CLAUDE markdown files
|
|
CLAUDE.md
|