* PackedSIMD VSX. VSX, which has the word "Vector" in its name,
is "inspired" by Vector Processing
but has no "Scaling" capability, and no Predicate masking.
+ Both these factors put pressure on developers to use
+ "inline assembler unrolling" and data repetition, which in turn
+ is detrimental to both L1 Data and Instruction Caches.
Adding Predicate Masks to the PackedSIMD VSX ISA
would effectively double the number of PackedSIMD
instructions (750 becomes 1,500) even if it were practical
seduction outlined in the "SIMD Considered Harmful" article
<https://www.sigarch.org/simd-instructions-considered-harmful/>.
It is clear that it is expected to deploy Multi-Issue to achieve
-high performance, which is a much cleaner approach that does not
-result in ISA poisoning such as that suffered by x86 (AVX).
+high performance, which is a much cleaner approach that has not
+resulted in ISA poisoning such as that suffered by x86 (AVX).
# Actual 3D GPU Architectures and ISAs (all SIMD)