mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-04 21:51:28 +00:00
13 lines
309 B
C++
13 lines
309 B
C++
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2018-2023, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#pragma once
|
|
|
|
#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
|