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

Full documentation for Composable Kernel is not yet available.

5
## CK 0.2.0 for ROCm 5.5.0
6
7
8
9
10
11

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

### Optimizations
rocking5566's avatar
rocking5566 committed
12
- Improve proformance of normalization kernel
13
14

### Added
15
16
17
18
19
- 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.
20
- Added support on NAVI3x.
21
22
23
24
25
26
- 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).
27
- Added Navi grouped ConvBwdWeight support (#505).
rocking's avatar
rocking committed
28
29
- Added MaxPool, AvgPool forward (#815).
- Added MaxPool backward (#750).
30
31
32

### Changed
- Changed ...