From fedac66a4b7b724d1b25c12a76b78b29ea870d8d Mon Sep 17 00:00:00 2001 From: lkcl Date: Sun, 14 Feb 2021 15:08:01 +0000 Subject: [PATCH] --- 3d_gpu/architecture/dynamic_simd.mdwn | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/3d_gpu/architecture/dynamic_simd.mdwn b/3d_gpu/architecture/dynamic_simd.mdwn index 2a956e85a..533aec7f3 100644 --- a/3d_gpu/architecture/dynamic_simd.mdwn +++ b/3d_gpu/architecture/dynamic_simd.mdwn @@ -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: * m.If/Switch -- 2.30.2