From 8062ee1241c435a41fccb0fe2cce7b0584507bc4 Mon Sep 17 00:00:00 2001 From: lkcl Date: Thu, 21 Jan 2021 15:58:28 +0000 Subject: [PATCH] --- 3d_gpu/architecture/dynamic_simd/logicops.mdwn | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/3d_gpu/architecture/dynamic_simd/logicops.mdwn b/3d_gpu/architecture/dynamic_simd/logicops.mdwn index 2fe7671a2..5de6f3325 100644 --- a/3d_gpu/architecture/dynamic_simd/logicops.mdwn +++ b/3d_gpu/architecture/dynamic_simd/logicops.mdwn @@ -5,16 +5,16 @@ Links * * -These are not the same as bitwise operations equivalent to: +These are **not** the same as bitwise logical operations equivalent to: for i in range(64): - result[i] = a[i] xor b[i] + result[i] = a[i] xor b[i] # 2 operands they are instead SIMD versions of: result = 0 # initial value (single bit) for i in range(64): - result = result xor a[i] + result = result xor a[i] # one operand # Requirements -- 2.30.2