mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-16 10:59:55 +00:00
* delete obselete files
* move files
* build
* update cmake
* update cmake
* fix build
* reorg examples
* update cmake for example and test
[ROCm/composable_kernel commit: 5d37d7bff4]
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
|