(no commit message)
authorlkcl <lkcl@web>
Sat, 2 Oct 2021 20:37:34 +0000 (21:37 +0100)
committerIkiWiki <ikiwiki.info>
Sat, 2 Oct 2021 20:37:34 +0000 (21:37 +0100)
3d_gpu/architecture/dynamic_simd.mdwn

index f582a87bdaffe59e54b9d0b3520f3a15f14db8d5..33bbb627e60b965a1d00e5a0191f1d1bb669b482 100644 (file)
@@ -75,10 +75,10 @@ construct:
     # every way.  no changes to the nmigen language or its use
     # are permitted
 
-    with m.If(x < y):
-        comb += out.eq(x)
-    with m.Else():
-        comb += out.eq(y)
+    with m.If(x < y):       # exactly
+        comb += out.eq(x)   # the
+    with m.Else():          # same
+        comb += out.eq(y)   # code
 
 The purpose of PartitionedSignal is therefore to provide full 100%
 transparent SIMD run-time dynamic behaviour as far as end-usage is