/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-composable-kernel/checkouts/develop/include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp Source File

/home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-composable-kernel/checkouts/develop/include/ck_tile/ops/image_to_column/pipeline/block_image_to_column_problem.hpp Source File#

Composable Kernel: /home/docs/checkouts/readthedocs.org/user_builds/advanced-micro-devices-composable-kernel/checkouts/develop/include/ck_tile/ops/image_to_column/pipeline/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 
8 namespace ck_tile {
9 
10 template <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: cluster_descriptor.hpp:13
int32_t index_t
Definition: integer.hpp:9
remove_cv_t< std::remove_reference_t< T > > remove_cvref_t
Definition: type_traits.hpp:21
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