Files
composable_kernel/CHANGELOG.md
Bartłomiej Kocot e2243a4d1e Add column to image kernel (#930)
* Add column to image kernel

* Minor fixes for dtypes and client examples

* Disable tests for disabled dtypes

* Disable add instances functions for disabled data types

* Minor stylistic fixes

* Revert "Disable add instances functions for disabled data types"

This reverts commit 728b869563.

* Instances reduction

* Add comments in device_column_to_image_impl

* Update changelog and Copyrights

* Improve changelog
2023-09-27 17:19:06 +02:00

1.5 KiB

Change Log for Composable Kernel

Full documentation for Composable Kernel is not yet available.

(Unreleased) CK for ROCm 6.0.0

Fixed

Optimizations

Added

  • Added image to column (#867) and column to image kernels (#930).

Changed

CK 0.2.0 for ROCm 5.5.0

Fixed

  • Fixed a bug in 6-dimensional kernels (#555).
  • Fixed grouped ConvBwdWeight test case failure (#524).

Optimizations

  • Improve proformance of normalization kernel

Added

  • Added new cmake flag "DL_KERNELS" must be set to "ON" in order to build the gemm_dl and batched_gemm_multi_d_dl instances.
  • Added new cmake flag "DTYPES" which could be set to any subset of "fp64;fp32;fp16;fp8;bf16;int8" to build instance of select data types.
  • Added new cmake flag "INSTANCES_ONLY" which will only build CK library and instances without the tests, examples, or profiler.
  • Added new feature: if GPU_TARGETS is not set on cmake command line, CK will be built for all targets supported by compiler.
  • Added support on MI300A/MI300X.
  • Added support on NAVI3x.
  • Added user tutorial (#563).
  • Added more instances for irregular GEMM sizes (#560).
  • Added inter-wave consumer-producer programming model for GEMM kernels (#310).
  • Added multi-D GEMM client APIs (#534).
  • Added multi-embeddings support (#542).
  • Added Navi3x blockwise GEMM and real GEMM support (#541).
  • Added Navi grouped ConvBwdWeight support (#505).
  • Added MaxPool, AvgPool forward (#815).
  • Added MaxPool backward (#750).

Changed