(no commit message)
authorlkcl <lkcl@web>
Mon, 23 May 2022 22:19:00 +0000 (23:19 +0100)
committerIkiWiki <ikiwiki.info>
Mon, 23 May 2022 22:19:00 +0000 (23:19 +0100)
openpower/sv/shape_table_format.mdwn

index 241e03e6c8eb3816c93a87fe981336c08da2c03f..b02e670b5ee0a88fd18084e7a5baa5692fc65181 100644 (file)
@@ -11,7 +11,10 @@ mode sets different behaviours (straight matrix multiply, FFT, DCT).
 * **mode=0b00** sets straight Matrix Mode
 * **mode=0b01** sets "FFT/DCT" mode and activates submodes
 
-When submode2 is 0, for FFT submode the following schedules may be selected:
+**FFT/DCT mode**
+
+submode2=0 is for FFT. For FFT submode the following schedules may be 
+selected:
 
 * **submode=0b00** selects the ``j`` offset of the innermost for-loop
   of Tukey-Cooley
@@ -39,7 +42,9 @@ is also performed.
 * **submode=0b00** selects the ``j`` offset of the innermost for-loop,
 * **submode=0b01** selects the ``j+1`` offset of the innermost for-loop,
 
-in Matrix Mode, skip allows dimensions to be skipped from being included
+**Matrix Mode**
+
+In Matrix Mode, skip allows dimensions to be skipped from being included
 in the resultant output index.  this allows sequences to be repeated:
 ```0 0 0 1 1 1 2 2 2 ...``` or in the case of skip=0b11 this results in
 modulo ```0 1 2 0 1 2 ...```