mirror of
https://github.com/ROCm/composable_kernel.git
synced 2026-03-29 19:47:39 +00:00
* chore(copyright): update copyright header for codegen directory * chore(copyright): update copyright header for example directory
20 lines
435 B
C++
20 lines
435 B
C++
// Copyright (c) Advanced Micro Devices, Inc., or its affiliates.
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
#pragma once
|
|
|
|
#include "ck_tile/core.hpp"
|
|
#include "ck_tile/host/kernel_launch.hpp"
|
|
#include "ck_tile/ops/permute.hpp"
|
|
#include <string>
|
|
|
|
struct permute_traits
|
|
{
|
|
std::string data_type;
|
|
};
|
|
|
|
using permute_args = ck_tile::GenericPermuteHostArgs;
|
|
|
|
// host API
|
|
float permute(permute_traits, permute_args, const ck_tile::stream_config&);
|