hip build

[ROCm/composable_kernel commit: 8c923db423]
This commit is contained in:
Chao Liu
2019-03-22 14:22:58 -05:00
parent 9637b859d8
commit 1f925812b2
19 changed files with 196 additions and 155 deletions

View File

@@ -10,7 +10,7 @@ struct Array
unsigned mData[nSize];
template <class... Xs>
__host__ __device__ Array(Xs... xs) : mData({static_cast<TData>(xs)...})
__host__ __device__ Array(Xs... xs) : mData{static_cast<TData>(xs)...}
{
}