projects
/
libreriscv.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6e195a9
)
(no commit message)
author
lkcl
<lkcl@web>
Mon, 7 Oct 2019 08:56:23 +0000
(09:56 +0100)
committer
IkiWiki
<ikiwiki.info>
Mon, 7 Oct 2019 08:56:23 +0000
(09:56 +0100)
simple_v_extension/specification/mv.x.rst
patch
|
blob
|
history
diff --git
a/simple_v_extension/specification/mv.x.rst
b/simple_v_extension/specification/mv.x.rst
index ce75de22031aa4a500a29fe71959fab262a43358..332892f8e1273d805d9a6b754a193c0b0bcd878b 100644
(file)
--- a/
simple_v_extension/specification/mv.x.rst
+++ b/
simple_v_extension/specification/mv.x.rst
@@
-221,6
+221,17
@@
Matrix 4x4 Vector mul
pfscale is a 4 vec mv.shuffle followed by a fmul. pfscaleadd is a 4 vec mv.shuffle followed by a fmac.
+In effect what this is doing is:
+
+::
+
+ fmul f2, f1.xxxx, f10
+ fmac f2, f1.yyyy, f11, f2
+ fmac f2, f1.zzzz, f12, f2
+ fmac f2, f1.wwww, f13, f2
+
+Where all of f2, f1, and f10-13 are vec4
+
Pseudocode
==========