mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-13 09:45:56 +00:00
* adding compilation for multiple targets * fix build * clean * update Jekinsfile * update readme * update Jenkins * use ck::half_t instead of ushort for bf16 * rename enum classes * clean * rename * clean
13 lines
247 B
C++
13 lines
247 B
C++
#ifndef CK_MULTI_INDEX_HPP
|
|
#define CK_MULTI_INDEX_HPP
|
|
|
|
#include "common_header.hpp"
|
|
|
|
#if CK_EXPERIMENTAL_USE_DYNAMICALLY_INDEXED_MULTI_INDEX
|
|
#include "array_multi_index.hpp"
|
|
#else
|
|
#include "statically_indexed_array_multi_index.hpp"
|
|
#endif
|
|
|
|
#endif
|