(no commit message)
authorlkcl <lkcl@web>
Sun, 14 Feb 2021 15:08:01 +0000 (15:08 +0000)
committerIkiWiki <ikiwiki.info>
Sun, 14 Feb 2021 15:08:01 +0000 (15:08 +0000)
3d_gpu/architecture/dynamic_simd.mdwn

index 2a956e85a925e040d6f738f65cddb9ebc3bb2bc5..533aec7f37c5f5a46a9d4ccaa2e08f85bac2c405 100644 (file)
@@ -6,6 +6,16 @@ a nmigen Signal, in every way, as a full peer of a nmigen Signal, with
 no requirement on the part of the developer to even know that it is
 performing parallel dynamically-partitioned operations.
 
+nmigen 32-bit Signal:
+
+    a        : .... .... .... .... (32 bits)
+
+Dynamically-partitioned 32-bit Signal subdivided into 4 by 3 partition bits:
+
+    partition:     P    P    P     (3 bits)
+    a        : .... .... .... .... (32 bits)
+    exp-a    : ....P....P....P.... (32+3 bits, P=1 if no partition)
+
 Links:
 
 * <https://bugs.libre-soc.org/show_bug.cgi?id=458> m.If/Switch