mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-12 09:16:52 +00:00
* delete obselete files * move files * build * update cmake * update cmake * fix build * reorg examples * update cmake for example and test
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
|