From 9dfccf887266ac3fb994f3348d1bb423a36ac20b Mon Sep 17 00:00:00 2001 From: lkcl Date: Sun, 14 Feb 2021 20:01:03 +0000 Subject: [PATCH] --- 3d_gpu/architecture/dynamic_simd/add.mdwn | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/3d_gpu/architecture/dynamic_simd/add.mdwn b/3d_gpu/architecture/dynamic_simd/add.mdwn index eff8ef146..458fac2aa 100644 --- a/3d_gpu/architecture/dynamic_simd/add.mdwn +++ b/3d_gpu/architecture/dynamic_simd/add.mdwn @@ -15,7 +15,7 @@ and take up large resources. partition: P P P (3 bits) a : .... .... .... .... (32 bits) b : .... .... .... .... (32 bits) - exp-a : ....P....P....P.... (32+3 bits, P=1 if no partition) + exp-a : ....P....P....P.... (32+3 bits, P=0 if no partition) exp-b : ....0....0....0.... (32 bits plus 3 zeros) exp-o : ....xN...xN...xN... (32+3 bits - x to be discarded) o : .... N... N... N... (32 bits - x ignored, N is carry-over) @@ -28,7 +28,7 @@ new version: I = P=>c : I I I c (4 bits) a : AAAA AAAA AAAA AAAA (32 bits) b : BBBB BBBB BBBB BBBB (32 bits) - exp-a : 0AAAACAAAACAAAACAAAAc (32+3+2 bits, P=1 if no partition) + exp-a : 0AAAACAAAACAAAACAAAAc (32+3+2 bits, P=0 if no partition) exp-b : 0BBBBIBBBBIBBBBIBBBBc (32+2 bits plus 3 zeros) exp-o : o....oN...oN...oN...x (32+3+2 bits - x to be discarded) o : .... N... N... N... (32 bits - x ignored, N is carry-over) -- 2.30.2