(no commit message)
authorlkcl <lkcl@web>
Thu, 30 Sep 2021 20:46:18 +0000 (21:46 +0100)
committerIkiWiki <ikiwiki.info>
Thu, 30 Sep 2021 20:46:18 +0000 (21:46 +0100)
3d_gpu/architecture/dynamic_simd/logicops.mdwn

index f44712a19d0f3bd24f1fc50542bab50ec9c1698c..bb26d2ac875fa48600191a1976a3194f786f8bf6 100644 (file)
@@ -10,13 +10,15 @@ These are **not** the same as bitwise logical operations equivalent to:
      for i in range(64):
          result[i] = a[i] xor b[i] # 2 operands
 
+The above returns a 64 bit result for 64 bit inputs.
+
 they are instead SIMD versions of:
 
      result = 0 # initial value (single bit)
      for i in range(64):
          result = result xor a[i] # one operand
 
-Each of the logic ops, "some bool any all xor" are a single bit for
+Each of the logic ops, "some bool any all xor" are a **single bit** for
 scalar, but for Partitioned SIMD produce one bit per lane.
 
 # Requirements