mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-05-15 10:37:44 +00:00
16 lines
346 B
Plaintext
16 lines
346 B
Plaintext
// SPDX-License-Identifier: MIT
|
|
// Copyright (c) 2025, Advanced Micro Devices, Inc. All rights reserved.
|
|
|
|
#include "@INSTANCES@.inc"
|
|
|
|
namespace ck::tensor_operation::device::instance {
|
|
|
|
@EXTERN_TEMPLATE_STATEMENTS@;
|
|
|
|
void add_@INSTANCES@(
|
|
@INSTANCES@& instances) {
|
|
@CALL_STATEMENTS@;
|
|
}
|
|
|
|
} // namespace ck::tensor_operation::device::instance
|