mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-14 18:17:44 +00:00
* support dynamic tensor descriptor
* use buffer load OOB feature for padding case
* add navi support
* add int8x4 inference kernel
Co-authored-by: Chao Liu <chao@ixt-rack-81.local.lan>
Co-authored-by: Jing Zhang <jizhan@amd.com>
[ROCm/composable_kernel commit: fcbb978828]
13 lines
234 B
C++
13 lines
234 B
C++
#ifndef CK_MULTI_INDEX_HPP
|
|
#define CK_MULTI_INDEX_HPP
|
|
|
|
#include "common_header.hpp"
|
|
|
|
#if CK_USE_DYNAMICALLY_INDEXED_MULTI_INDEX
|
|
#include "array_multi_index.hpp"
|
|
#else
|
|
#include "statically_indexed_array_multi_index.hpp"
|
|
#endif
|
|
|
|
#endif
|