(no commit message)
authorlkcl <lkcl@web>
Sun, 5 Jun 2022 15:04:45 +0000 (16:04 +0100)
committerIkiWiki <ikiwiki.info>
Sun, 5 Jun 2022 15:04:45 +0000 (16:04 +0100)
openpower/sv/shape_table_format.mdwn

index eace11e388d886f44ab673980b3b09607f714bb2..472bd626ec45544ae542c638a3b32bafd93c2e68 100644 (file)
@@ -3,8 +3,8 @@ disabled: the register's elements are a linear (1D) vector.
 
 |31.30|29..28 |27..24| 23..21 | 20..18  | 17..12  |11..6 |5..0  | Mode  |
 |---- |------ |------| ------ | ------- | ------- |----- |----- | ----- |
-|mode |skip   |offset| invxyz | permute | zdimsz  |ydimsz|xdimsz|Matrix |
-|0b00 |elwidth|offset|skip/invxy|0b110/0b111|SVGPR|ydimsz|xdimsz|Indexed|
+|0b00 |skip   |offset| invxyz | permute | zdimsz  |ydimsz|xdimsz|Matrix |
+|0b00 |elwidth|offset|sk1/invxy|0b110/0b111|SVGPR|ydimsz|xdimsz|Indexed|
 |0b01 |submode|offset| invxyz | submode2| rsvd    |rsvd  |xdimsz|DCT/FFT|
 |0b10 |       |      |        |         |         |      |      |rsvd   |
 |0b11 |       |      |        |         |         |      |      |rsvd   |
@@ -145,7 +145,7 @@ purposed to ensure that the 3rd dimension (Z) has no effect:
 
 ```
 def index_remap(ISHAPE, i):
-    MSHAPE.skip   = 0b0 || ISHAPE.skip
+    MSHAPE.skip   = 0b0 || ISHAPE.sk1
     MSHAPE.invxyz = 0b0 || ISHAPE.invxy
     MSHAPE.xdimsz = ISHAPE.xdimsz
     MSHAPE.ydimsz = ISHAPE.ydimsz