Skip to content

Commit 13305bc

Browse files
committed
try another thing
1 parent 176a62a commit 13305bc

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/gpu/intel/jit/codegen/reorder.hpp

+5-1
Original file line numberDiff line numberDiff line change
@@ -364,7 +364,11 @@ void emit_reorder_1d_tile(ngen::HW hw, GeneratorT *host,
364364
plan(u4_lower, esize, d, s);
365365
else
366366
plan(u4_upper, esize, d, s);
367-
if (dst.getType() == ngen::DataType::uw) plan(mov, esize, dst, d);
367+
if (dst.getType() == ngen::DataType::uw) {
368+
d.setType(ngen::DataType::uw);
369+
d.setRegion(d.getVS(), d.getWidth(), 2 * d.getHS());
370+
plan(mov, esize, dst, d);
371+
}
368372
}
369373
};
370374

0 commit comments

Comments
 (0)