GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ > Struct Template Reference

GroupedConvolutionBackwardDataKernel&lt; GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ &gt; Struct Template Reference#

Composable Kernel: ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ > Struct Template Reference
ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ > Struct Template Reference

The Grouped Convolution Backward Data kernel template. More...

#include <grouped_convolution_backward_data_kernel.hpp>

Public Types

using TilePartitioner = remove_cvref_t<TilePartitioner_>
using GemmPipeline = remove_cvref_t<GemmPipeline_>
using EpiloguePipeline = remove_cvref_t<EpiloguePipeline_>
using GemmALayout = remove_cvref_t<typename GemmPipeline::ALayout>
using GemmBLayout = remove_cvref_t<typename GemmPipeline::BLayout>
using GemmCLayout = remove_cvref_t<typename GemmPipeline::CLayout>
using InLayout = remove_cvref_t<typename GroupedConvTraitsType_::InLayout>
using WeiLayout = remove_cvref_t<typename GroupedConvTraitsType_::WeiLayout>
using OutLayout = remove_cvref_t<typename GroupedConvTraitsType_::OutLayout>
using DsLayout = remove_cvref_t<typename GroupedConvTraitsType_::DsLayout>
using GemmDsLayout = remove_cvref_t<typename EpiloguePipeline::DsLayout>
using InDataType = remove_cvref_t<typename GemmPipeline::ADataType>
using WeiDataType = remove_cvref_t<typename GemmPipeline::BDataType>
using DsDataType = remove_cvref_t<typename EpiloguePipeline::DsDataType>
using OutDataType = remove_cvref_t<typename EpiloguePipeline::ODataType>
using GroupedConvBwdDataKernelArgsSpecialized

Public Member Functions

CK_TILE_DEVICE index_t FindGroupId (const GroupedConvBwdDataKernelArgsSpecialized &kargs, index_t block_id) const
CK_TILE_DEVICE void operator() (GroupedConvBwdDataKernelArgsSpecialized kargs) const

Static Public Member Functions

static CK_TILE_HOST const std::string GetName ()
static CK_TILE_HOST auto GridSize (const GroupedConvBwdDataKernelArgsSpecialized &kargs)
static CK_TILE_HOST constexpr auto BlockSize ()
static CK_TILE_HOST constexpr GroupedConvBwdDataKernelArgsSpecialized MakeKernelArgs (const GroupedConvBwdDataHostArgs &hostArgs)
static CK_TILE_HOST_DEVICE constexpr index_t GetSmemSize ()
static CK_TILE_HOST bool IsSupportedArgument (const GroupedConvBwdDataKernelArgsSpecialized &kargs)
template<memory_operation_enum DstInMemOp = memory_operation_enum::set>
static CK_TILE_DEVICE auto MakeGemmTensorViews (const OutDataType *a_ptr, const InDataType *b_ptr, const std::array< const void *, NumDTensor > &ds_ptr, WeiDataType *c_ptr, const GroupedConvBwdDataKernelArgsSpecialized &kargs, const index_t group_id)
template<typename TensorView>
static CK_TILE_DEVICE auto MakeGemmPadViews (const TensorView &views)
template<typename PadView>
static CK_TILE_DEVICE auto MakeGemmTileWindows (const PadView &views, const index_t i_m, const index_t i_n, const index_t i_k=0)
static CK_TILE_DEVICE void RunGemm (const OutDataType *a_ptr, const InDataType *b_ptr, const std::array< const void *, NumDTensor > &ds_ptr, WeiDataType *c_ptr, void *smem_ptr_0, const GroupedConvBwdDataKernelArgsSpecialized &kargs, const index_t block_idx_m, const index_t block_idx_n, const index_t group_id)
 Runs single GEMM problem cooperatively by whole workgroup.
static CK_TILE_DEVICE void RunGemm2LDS (const OutDataType *a_ptr, const InDataType *b_ptr, const std::array< const void *, NumDTensor > &ds_ptr, WeiDataType *c_ptr, void *__restrict__ smem_ptr_0, void *__restrict__ smem_ptr_1, const GroupedConvBwdDataKernelArgsSpecialized &kargs, const index_t block_idx_m, const index_t block_idx_n, const index_t group_id)
 Runs single GEMM problem cooperatively by whole workgroup.

Static Public Attributes

static constexpr index_t NDimSpatial = GroupedConvTraitsType_::NDimSpatial_
static constexpr ConvolutionSpecialization ConvSpecialization
static constexpr index_t NumDTensor = GroupedConvTraitsType_::NumDTensor
static constexpr index_t kBlockSize = GemmPipeline::BlockSize
static constexpr index_t MaxGroupedGemmGroupsNum
static constexpr bool IsSplitKSupported = false
static constexpr auto I0 = number<0>()
static constexpr auto I1 = number<1>()
static constexpr auto I2 = number<2>()
static constexpr auto I3 = number<3>()

Detailed Description

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
struct ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >

The Grouped Convolution Backward Data kernel template.

Overview

This class provides the grouped convolution backward data kernel template. By semantic division of Implicit GEMM algorithm into following parts we achieve flexible, versatile and robust kernel implementation.

  • Prolog - The start of GEMM kernel implementation in operator() function call operator" which determines the work scope of each workgroup. @li @b GemmPipeline - The core part @a "heart" of matrix multiplication algorithm. This is the place where each workgroup is loading data from global memory and carrying out dot products. @li @b Epilogue - The @a "final" part of matrix multiplication implementation responsible for storing results to global memory. This is also the place where any additional operator fusion may take place. Additionally both @ref GemmPipeline_ "GemmPipeline" and @ref EpiloguePipeline_ "EpiloguePipeline" are parameterized with so called @a Policy which determines all internal details of those functional parts. You can think of it like both gemm and epilogue pipelines provides the control-flow logic controlled by policies. Moreover the policy is responsible for definition of all necessary data layouts and thread's work distribution. @tparam GroupedConvTraitsType_ The type of class providing traits for grouped convolution. @tparam TilePartitioner_ The type of class providing mapping of workgroup index into the output data tile to be calculated. It determines the workgroup to data relationship (or in other words - which data would be processed and calculated by which workgroup). @tparam GemmPipeline_ The type of class which provides the core part of matrix multiplication. This class should provide implementation of data loading from global memory and performing block-wise matrix multiplication. You can think of it as a work done by single workgroup point of view. @tparam EpiloguePipeline_ The type of class providing the final part of matrix multiplication implementation. It is responsible for storing results calculated by @ref GemmPipeline_ "GemmPipeline" to the output C tensor in global memory.

Member Typedef Documentation

◆ DsDataType

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::DsDataType = remove_cvref_t<typename EpiloguePipeline::DsDataType>

◆ DsLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::DsLayout = remove_cvref_t<typename GroupedConvTraitsType_::DsLayout>

◆ EpiloguePipeline

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::EpiloguePipeline = remove_cvref_t<EpiloguePipeline_>

◆ GemmALayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GemmALayout = remove_cvref_t<typename GemmPipeline::ALayout>

◆ GemmBLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GemmBLayout = remove_cvref_t<typename GemmPipeline::BLayout>

◆ GemmCLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GemmCLayout = remove_cvref_t<typename GemmPipeline::CLayout>

◆ GemmDsLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GemmDsLayout = remove_cvref_t<typename EpiloguePipeline::DsLayout>

◆ GemmPipeline

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GemmPipeline = remove_cvref_t<GemmPipeline_>

◆ GroupedConvBwdDataKernelArgsSpecialized

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GroupedConvBwdDataKernelArgsSpecialized
Initial value:
The Grouped Convolution kernel device arguments.
Definition grouped_convolution_backward_data_kernel.hpp:22

◆ InDataType

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::InDataType = remove_cvref_t<typename GemmPipeline::ADataType>

◆ InLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::InLayout = remove_cvref_t<typename GroupedConvTraitsType_::InLayout>

◆ OutDataType

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::OutDataType = remove_cvref_t<typename EpiloguePipeline::ODataType>

◆ OutLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::OutLayout = remove_cvref_t<typename GroupedConvTraitsType_::OutLayout>

◆ TilePartitioner

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::TilePartitioner = remove_cvref_t<TilePartitioner_>

◆ WeiDataType

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::WeiDataType = remove_cvref_t<typename GemmPipeline::BDataType>

◆ WeiLayout

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
using ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::WeiLayout = remove_cvref_t<typename GroupedConvTraitsType_::WeiLayout>

Member Function Documentation

◆ BlockSize()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_HOST constexpr auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::BlockSize ( )
inlinestaticconstexpr

◆ FindGroupId()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_DEVICE index_t ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::FindGroupId ( const GroupedConvBwdDataKernelArgsSpecialized & kargs,
index_t block_id ) const
inline

◆ GetName()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_HOST const std::string ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GetName ( )
inlinestaticnodiscard

◆ GetSmemSize()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_HOST_DEVICE constexpr index_t ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GetSmemSize ( )
inlinestaticconstexpr

◆ GridSize()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_HOST auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::GridSize ( const GroupedConvBwdDataKernelArgsSpecialized & kargs)
inlinestatic

◆ IsSupportedArgument()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_HOST bool ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::IsSupportedArgument ( const GroupedConvBwdDataKernelArgsSpecialized & kargs)
inlinestatic

◆ MakeGemmPadViews()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
template<typename TensorView>
CK_TILE_DEVICE auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::MakeGemmPadViews ( const TensorView & views)
inlinestatic

◆ MakeGemmTensorViews()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
template<memory_operation_enum DstInMemOp = memory_operation_enum::set>
CK_TILE_DEVICE auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::MakeGemmTensorViews ( const OutDataType * a_ptr,
const InDataType * b_ptr,
const std::array< const void *, NumDTensor > & ds_ptr,
WeiDataType * c_ptr,
const GroupedConvBwdDataKernelArgsSpecialized & kargs,
const index_t group_id )
inlinestatic

◆ MakeGemmTileWindows()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
template<typename PadView>
CK_TILE_DEVICE auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::MakeGemmTileWindows ( const PadView & views,
const index_t i_m,
const index_t i_n,
const index_t i_k = 0 )
inlinestatic

◆ MakeKernelArgs()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_HOST constexpr GroupedConvBwdDataKernelArgsSpecialized ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::MakeKernelArgs ( const GroupedConvBwdDataHostArgs & hostArgs)
inlinestaticconstexpr

◆ operator()()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_DEVICE void ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::operator() ( GroupedConvBwdDataKernelArgsSpecialized kargs) const
inline

◆ RunGemm()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_DEVICE void ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::RunGemm ( const OutDataType * a_ptr,
const InDataType * b_ptr,
const std::array< const void *, NumDTensor > & ds_ptr,
WeiDataType * c_ptr,
void * smem_ptr_0,
const GroupedConvBwdDataKernelArgsSpecialized & kargs,
const index_t block_idx_m,
const index_t block_idx_n,
const index_t group_id )
inlinestatic

Runs single GEMM problem cooperatively by whole workgroup.

Parameters
a_ptrinput A pointer
b_ptrinput B pointer
c_ptroutput C pointer
smem_ptr_0The start memory pointer of the shared memory block.
kargsGrouped Convolution Backward Data kernel arguments
block_idx_mThe GEMM's output M dimension tile index processed by this workgroup.
block_idx_nThe GEMM's output N dimension tile index processed by this workgroup.

◆ RunGemm2LDS()

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
CK_TILE_DEVICE void ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::RunGemm2LDS ( const OutDataType * a_ptr,
const InDataType * b_ptr,
const std::array< const void *, NumDTensor > & ds_ptr,
WeiDataType * c_ptr,
void *__restrict__ smem_ptr_0,
void *__restrict__ smem_ptr_1,
const GroupedConvBwdDataKernelArgsSpecialized & kargs,
const index_t block_idx_m,
const index_t block_idx_n,
const index_t group_id )
inlinestatic

Runs single GEMM problem cooperatively by whole workgroup.

Note
RunGEMM2LDS in with two shared memory buffers using the ping pong buffer mechanism.
Parameters
a_ptrinput A pointer
b_ptrinput B pointer
c_ptroutput C pointer
smem_ptr_0The starting pointer of 1st shared memory block.
smem_ptr_1The starting pointer of 2nd shared memory block.
kargsGrouped Convolution Backward Data kernel arguments
block_idx_mThe GEMM's output M dimension tile index processed by this workgroup.
block_idx_nThe GEMM's output N dimension tile index processed by this workgroup.

Member Data Documentation

◆ ConvSpecialization

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
ConvolutionSpecialization ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::ConvSpecialization
staticconstexpr
Initial value:
=
GroupedConvTraitsType_::ConvSpecialization

◆ I0

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::I0 = number<0>()
staticconstexpr

◆ I1

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::I1 = number<1>()
staticconstexpr

◆ I2

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::I2 = number<2>()
staticconstexpr

◆ I3

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
auto ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::I3 = number<3>()
staticconstexpr

◆ IsSplitKSupported

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
bool ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::IsSplitKSupported = false
staticconstexpr

◆ kBlockSize

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
index_t ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::kBlockSize = GemmPipeline::BlockSize
staticconstexpr

◆ MaxGroupedGemmGroupsNum

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
index_t ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::MaxGroupedGemmGroupsNum
staticconstexpr
Initial value:

◆ NDimSpatial

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
index_t ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::NDimSpatial = GroupedConvTraitsType_::NDimSpatial_
staticconstexpr

◆ NumDTensor

template<typename GroupedConvTraitsType_, typename TilePartitioner_, typename GemmPipeline_, typename EpiloguePipeline_>
index_t ck_tile::GroupedConvolutionBackwardDataKernel< GroupedConvTraitsType_, TilePartitioner_, GemmPipeline_, EpiloguePipeline_ >::NumDTensor = GroupedConvTraitsType_::NumDTensor
staticconstexpr

The documentation for this struct was generated from the following file: