block_image_to_column_problem.hpp Source File

block_image_to_column_problem.hpp Source File#

Composable Kernel: block_image_to_column_problem.hpp Source File
block_image_to_column_problem.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2024, Advanced Micro Devices, Inc. All rights reserved.
3
4#pragma once
5
7
8namespace ck_tile {
9
10template <typename InDataType_,
11 typename OutDataType_,
12 typename BlockShape_,
13 index_t NDimSpatial_,
14 index_t AligmentIn_,
15 index_t AligmentOut_>
17{
21
22 static constexpr index_t NDimSpatial = NDimSpatial_;
23 static constexpr index_t AligmentIn = AligmentIn_;
24 static constexpr index_t AligmentOut = AligmentOut_;
25};
26
27} // namespace ck_tile
Definition tile/core/algorithm/cluster_descriptor.hpp:13
remove_cv_t< std::remove_reference_t< T > > remove_cvref_t
Definition type_traits.hpp:21
int32_t index_t
Definition integer.hpp:9
Definition block_image_to_column_problem.hpp:17
static constexpr index_t AligmentIn
Definition block_image_to_column_problem.hpp:23
static constexpr index_t NDimSpatial
Definition block_image_to_column_problem.hpp:22
remove_cvref_t< InDataType_ > InDataType
Definition block_image_to_column_problem.hpp:18
remove_cvref_t< BlockShape_ > BlockShape
Definition block_image_to_column_problem.hpp:20
static constexpr index_t AligmentOut
Definition block_image_to_column_problem.hpp:24
remove_cvref_t< OutDataType_ > OutDataType
Definition block_image_to_column_problem.hpp:19