block_gemm_areg_breg_creg_v1_custom_policy.hpp Source File

block_gemm_areg_breg_creg_v1_custom_policy.hpp Source File#

Composable Kernel: block_gemm_areg_breg_creg_v1_custom_policy.hpp Source File
block_gemm_areg_breg_creg_v1_custom_policy.hpp
Go to the documentation of this file.
1// SPDX-License-Identifier: MIT
2// Copyright (c) 2018-2024, Advanced Micro Devices, Inc. All rights reserved.
3
4#pragma once
5
6#include "ck_tile/core.hpp"
7
8namespace ck_tile {
9
10template <typename AType_,
11 typename BType_,
12 typename CType_,
13 typename BlockWarps_,
14 typename WarpGemm_>
16{
20
22
23 static constexpr index_t kMWarps = BlockWarps::at(number<0>{});
24 static constexpr index_t kNWarps = BlockWarps::at(number<1>{});
25 static constexpr index_t kKWarps = BlockWarps::at(number<2>{});
26
28
29 template <typename Problem>
31 {
33 }
34};
35
36} // namespace ck_tile
#define CK_TILE_HOST_DEVICE
Definition config.hpp:42
Definition tile/core/algorithm/cluster_descriptor.hpp:13
remove_cv_t< std::remove_reference_t< T > > remove_cvref_t
Definition type_traits.hpp:21
constant< v > number
Definition tile/core/numeric/integral_constant.hpp:37
int32_t index_t
Definition integer.hpp:9
CK_TILE_HOST_DEVICE constexpr auto make_tuple(Xs &&... xs)
Definition tile/core/container/tuple.hpp:360
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:16
remove_cvref_t< BlockWarps_ > BlockWarps
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:21
remove_cvref_t< AType_ > AType
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:17
static constexpr index_t kNWarps
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:24
static constexpr index_t kMWarps
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:23
remove_cvref_t< BType_ > BType
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:18
static CK_TILE_HOST_DEVICE constexpr auto GetWarpGemmMWarpNWarp()
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:30
remove_cvref_t< CType_ > CType
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:19
remove_cvref_t< WarpGemm_ > WarpGemm
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:27
static constexpr index_t kKWarps
Definition block_gemm_areg_breg_creg_v1_custom_policy.hpp:25