Skip to content

Commit 7d0f0f5

Browse files
committed
Make bytes in 2D narrowing test ascending
1 parent dfed4a4 commit 7d0f0f5

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/device/tile.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1240,8 +1240,8 @@ end
12401240
ct.store(b, pid, reinterpret(UInt8, ct.load(a, pid, (2, 4))))
12411241
return
12421242
end
1243-
let M = reshape(UInt16[0x0102, 0x0304, 0x0506, 0x0708,
1244-
0x090a, 0x0b0c, 0x0d0e, 0x0f10], 2, 4)
1243+
let M = reshape(UInt16[0x0201, 0x0403, 0x0605, 0x0807,
1244+
0x0a09, 0x0c0b, 0x0e0d, 0x100f], 2, 4)
12451245
a = CuArray(M)
12461246
b = CUDA.zeros(UInt8, 4, 4)
12471247
@cuda backend=cuTile blocks=1 u16_to_u8(a, b)

0 commit comments

Comments
 (0)