From d4c2044b3fb1b043547c20283c3259b1d2bed703 Mon Sep 17 00:00:00 2001 From: lkcl Date: Sat, 16 Jan 2021 01:30:22 +0000 Subject: [PATCH] --- 3d_gpu/architecture/dynamic_simd/logicops.mdwn | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/3d_gpu/architecture/dynamic_simd/logicops.mdwn b/3d_gpu/architecture/dynamic_simd/logicops.mdwn index e7c816d39..748de9ad2 100644 --- a/3d_gpu/architecture/dynamic_simd/logicops.mdwn +++ b/3d_gpu/architecture/dynamic_simd/logicops.mdwn @@ -84,13 +84,13 @@ table showing how to combine x0-3 based on partitions p0-2 to produce result o0- [[!table data=""" p2p1p0 | o0 | o1 | o2 | o3 ------ | -------- | -------- | -------- | -- -0 0 0 | ^(x0-3) | 0 | 0 | 0 -0 0 1 | x0 | ^(x1-3) | 0 | 0 -0 1 0 | ^(x0-1) | 0 | ^(x2-3) | 0 -0 1 1 | x0 | x1 | ^(x2-3) | 0 -1 0 0 | ^(x0-2) | 0 | 0 | x3 -1 0 1 | x0 | ^(x1-2) | 0 | x3 -1 1 0 | ^(x0-1) | 0 | x2 | x3 +0 0 0 | ^(x0-3) | ^(x0-3) | ^(x0-3) | ^(x0-3) +0 0 1 | x0 | ^(x1-3) | ^(x1-3) | ^(x1-3) +0 1 0 | ^(x0-1) | ^(x0-1) | ^(x2-3) | ^(x2-3) +0 1 1 | x0 | x1 | ^(x2-3) | ^(x2-3) +1 0 0 | ^(x0-2) | ^(x0-2) | ^(x0-2) | x3 +1 0 1 | x0 | ^(x1-2) | ^(x1-2) | x3 +1 1 0 | ^(x0-1) | ^(x0-1) | x2 | x3 1 1 1 | x0 | x1 | x2 | x3 """]] -- 2.30.2