Commit c6e4dae9 authored by Chao Liu's avatar Chao Liu
Browse files

clean

No related merge requests found
Showing with 8 additions and 10 deletions
+8 -10
......@@ -16,8 +16,6 @@
#include "ck/tensor_operation/gpu/thread/threadwise_tensor_slice_transfer.hpp"
#include "ck/tensor_operation/gpu/element/element_wise_operation.hpp"
#include <tuple>
namespace ck {
template <typename GridwiseGemm,
......@@ -137,14 +135,14 @@ struct GridwiseGemm_k0mk1_k0nk1_mn_xdl_cshuffle_v1
using ThisThreadBlock = ThisThreadBlock<BlockSize>;
static constexpr std::size_t GridwiseGemmPipelineVersion = 2;
using GridwiseGemmPipe = typename std::tuple_element<
GridwiseGemmPipelineVersion,
std::tuple<char,
remove_cvref_t<decltype(
GridwiseGemmPipeline_v1_Selector<NumGemmKPrefetchStage, LoopSched>())>,
GridwiseGemmPipeline_v2>>::type;
// FIXME: pass GridwiseGemmPipe as a template arguement into GridwiseGemm
using GridwiseGemmPipe =
#if 1
remove_cvref_t<decltype(
GridwiseGemmPipeline_v1_Selector<NumGemmKPrefetchStage, LoopSched>())>;
#else
GridwiseGemmPipeline_v2;
#endif
__host__ __device__ static constexpr auto GetABlockDescriptor_AK0PerBlock_MPerBlock_AK1()
{
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment