From: lkcl Date: Sat, 2 Oct 2021 20:37:34 +0000 (+0100) Subject: (no commit message) X-Git-Tag: opf_rfc_ls005_v1~3759 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=577a0de92dd2c85f0d0e521303c10d61af4f6bfd;p=libreriscv.git --- diff --git a/3d_gpu/architecture/dynamic_simd.mdwn b/3d_gpu/architecture/dynamic_simd.mdwn index f582a87bd..33bbb627e 100644 --- a/3d_gpu/architecture/dynamic_simd.mdwn +++ b/3d_gpu/architecture/dynamic_simd.mdwn @@ -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