adding fp16 direct that reads pre-vectorized data

[ROCm/composable_kernel commit: 79d9b1084b]
This commit is contained in:
Chao Liu
2019-03-18 18:16:02 -05:00
parent 87bb6ae52b
commit 732984e63b
8 changed files with 92 additions and 166 deletions

View File

@@ -47,3 +47,11 @@ struct static_const_reduce_n<1>
return f(Number<0>{});
}
};
#if 0
template<class F>
__host__ __device__ constexpr auto unpacker(F f)
{
return [=](auto xs_array){ f(xs...); };
}
#endif