mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-24 00:57:39 +00:00
13 lines
297 B
C++
13 lines
297 B
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#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
|