forked from OSchip/llvm-project
Fixed typo in 2-d tiled layout
PiperOrigin-RevId: 281671097
This commit is contained in:
parent
4ea92a0586
commit
d05effb705
|
@ -796,7 +796,7 @@ Examples of memref static type
|
|||
#col_major = (d0, d1, d2) -> (d2, d1, d0)
|
||||
|
||||
// A 2-d tiled layout with tiles of size 128 x 256.
|
||||
#tiled_2d_128x256 = (d0, d1) -> (d0 div 128, d1 div 256, d0 mod 128, d0 mod 256)
|
||||
#tiled_2d_128x256 = (d0, d1) -> (d0 div 128, d1 div 256, d0 mod 128, d1 mod 256)
|
||||
|
||||
// A tiled data layout with non-constant tile sizes.
|
||||
#tiled_dynamic = (d0, d1)[s0, s1] -> (d0 floordiv s0, d1 floordiv s1,
|
||||
|
|
Loading…
Reference in New Issue