(no commit message)
authorlkcl <lkcl@web>
Mon, 21 Dec 2020 03:54:10 +0000 (03:54 +0000)
committerIkiWiki <ikiwiki.info>
Mon, 21 Dec 2020 03:54:10 +0000 (03:54 +0000)
openpower/sv/svp_rewrite/svp64.mdwn

index 8c3a2061f2bd77b23d51288605fdd98ec6af6164..37a6dd74f5f6e66eb537c82dfdfc591bb9e557f4 100644 (file)
@@ -206,7 +206,7 @@ These are the modes:
 * **ffirst** or data-dependent fail-on-first: see separate section.  the vector may be truncated depending on certain criteria.
 * **sat mode** or saturation: clamps each elemrnt result to a min/max rather than overflows / wraps.  allows signed and unsigned clamping.
 * **reduce mode**. a mapreduce is performed.  the result is a scalar.  a result vector however is required, as the upper elements may be used to store intermediary computations.  the result of the mapreduce is in the first element with a nonzero predicate bit.  see separate section below.
-  note that reduce mode only applies to 2 src operations.
+  note that there are comprehensive caveats when using this mode.
 * **pred-result** will test the result (CR testing selects a bit of CR and inverts it, just like branch testing) and if the test fails it is as if the predicate bit was zero.  When Rc=1 the CR element (CR0) however is still stored in the CR regfile.  This scheme does not apply to crops (crand, cror).
 
 Note that ffirst and reduce modes are not anticipated to be high-performance in some implementations.  ffirst due to interactions with VL, and reduce due to it requiring additional operations to produce a result.  normal, saturate and pred-result are however independent and may easily be parallelised to give high performance, regardless of the value of VL.