CHANGELOG.md 1.46 KB
Newer Older
1
2
3
4
# Change Log for Composable Kernel

Full documentation for Composable Kernel is not yet available.

5
6
7
8
9
10
11
12
13
14
15
16
## (Unreleased) CK for ROCm 6.0.0

### Fixed

### Optimizations

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

### Changed


17
## CK 0.2.0 for ROCm 5.5.0
18
19
20
21
22
23

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

### Optimizations
rocking5566's avatar
rocking5566 committed
24
- Improve proformance of normalization kernel
25
26

### Added
27
28
29
30
31
- 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.
32
- Added support on NAVI3x.
33
34
35
36
37
38
- 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).
39
- Added Navi grouped ConvBwdWeight support (#505).
rocking's avatar
rocking committed
40
41
- Added MaxPool, AvgPool forward (#815).
- Added MaxPool backward (#750).
42
43

### Changed