projects
/
libreriscv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aaa5324
)
(no commit message)
author
lkcl
<lkcl@web>
Fri, 18 Dec 2020 19:11:34 +0000
(19:11 +0000)
committer
IkiWiki
<ikiwiki.info>
Fri, 18 Dec 2020 19:11:34 +0000
(19:11 +0000)
3d_gpu/architecture/dynamic_simd/logicops.mdwn
[new file with mode: 0644]
patch
|
blob
diff --git a/3d_gpu/architecture/dynamic_simd/logicops.mdwn
b/3d_gpu/architecture/dynamic_simd/logicops.mdwn
new file mode 100644
(file)
index 0000000..
fca18cb
--- /dev/null
+++ b/
3d_gpu/architecture/dynamic_simd/logicops.mdwn
@@ -0,0
+1,14
@@
+# Logic boolean operations
+
+These are not the same as bitwise operations equivslent to:
+
+ for i in range(64):
+ result[i] = a[i] or b[i]
+
+they are instead SIMD versions of:
+
+ result = 0 # initial value
+ for i in range(64):
+ result = result or a[i]
+
+