From a20d67fe99bfe69cdd3415c2c34507be1d5dc3c9 Mon Sep 17 00:00:00 2001 From: lkcl Date: Sat, 2 Oct 2021 21:26:20 +0100 Subject: [PATCH] --- 3d_gpu/architecture/dynamic_simd.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3d_gpu/architecture/dynamic_simd.mdwn b/3d_gpu/architecture/dynamic_simd.mdwn index 6b4c9ab3a..f582a87bd 100644 --- a/3d_gpu/architecture/dynamic_simd.mdwn +++ b/3d_gpu/architecture/dynamic_simd.mdwn @@ -61,11 +61,11 @@ construct: # a mask of length 3 indicates a desire to partition Signals at # 3 points into 4 equally-spaced SIMD "partitions". mask = Signal(3) - # x y and out are all 16-bit so are subdivided at: - # | mask[0] mask[1] mask[3] | - # | 0-3 | 4-7 | 8-11 | 12-15 | with mask: + # x y and out are all 16-bit so are subdivided at: + # | mask[0] mask[1] mask[3] | + # | 0-3 | 4-7 | 8-11 | 12-15 | x = PartitionedSignal(16) # identical except for mask y = PartitionedSignal(16) # identical except for mask out = PartitionedSignal(16) # identical except for mask -- 2.30.2