From: lkcl Date: Sat, 2 Oct 2021 18:30:10 +0000 (+0100) Subject: (no commit message) X-Git-Tag: opf_rfc_ls005_v1~3775 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=6b6244e4f9b111dce8e4bffcd0378263abede0e8;p=libreriscv.git --- diff --git a/3d_gpu/architecture/dynamic_simd.mdwn b/3d_gpu/architecture/dynamic_simd.mdwn index 5ec64b6c6..16a6f5654 100644 --- a/3d_gpu/architecture/dynamic_simd.mdwn +++ b/3d_gpu/architecture/dynamic_simd.mdwn @@ -53,9 +53,10 @@ construct: # | mask[0] mask[1] mask[3] | # | 0-3 | 4-7 | 8-11 | 12-15 | - x = PartitionedSignal(mask, 16) # identical except for mask - y = PartitionedSignal(mask, 16) # identical except for mask - out = PartitionedSignal(mask, 16) # identical except for mask + with mask: + x = PartitionedSignal(16) # identical except for mask + y = PartitionedSignal(16) # identical except for mask + out = PartitionedSignal(16) # identical except for mask # all code here is required to be absolutely identical to the # scalar case, and identical in nmigen language behaviour in