reorginze files

[ROCm/composable_kernel commit: 81497a93a0]
This commit is contained in:
Chao Liu
2019-06-11 23:49:51 -05:00
parent 3dc2ff612c
commit 14451df1fd
59 changed files with 197 additions and 198 deletions

View File

@@ -0,0 +1,12 @@
#ifndef CK_GRIDWISE_CONVOLUTION_KERNEL_WRAPPER
#define CK_GRIDWISE_CONVOLUTION_KERNEL_WRAPPER
template <class GridwiseConvolution, class T>
__global__ void run_gridwise_convolution_kernel(const T* const __restrict__ p_in_global,
const T* const __restrict__ p_wei_global,
T* const __restrict__ p_out_global)
{
GridwiseConvolution{}.Run(p_in_global, p_wei_global, p_out_global);
}
#endif