made changes to cshuffle datatype to resolve compilation error: reduction is also working for bf16, fp8

This commit is contained in:
Astha Rai
2025-06-04 20:42:32 +00:00
parent 5f9d447669
commit 64451ec381
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ using ADataType = ck::bhalf_t;
using BDataType = ck::bhalf_t;
using CDataType = ck::bhalf_t;
using AccDataType = float;
using CShuffleDataType = ck::bhalf_t;
using CShuffleDataType = float;
using ALayout = Row;
using BLayout = Col;

View File

@@ -8,7 +8,7 @@
using ADataType = ck::f8_t;
using BDataType = ck::f8_t;
using AccDataType = float;
using CShuffleDataType = ck::half_t;
using CShuffleDataType = float;
using CDataType = ck::half_t;
using ALayout = Row;