(no commit message)
authorlkcl <lkcl@web>
Mon, 7 Oct 2019 08:56:23 +0000 (09:56 +0100)
committerIkiWiki <ikiwiki.info>
Mon, 7 Oct 2019 08:56:23 +0000 (09:56 +0100)
simple_v_extension/specification/mv.x.rst

index ce75de22031aa4a500a29fe71959fab262a43358..332892f8e1273d805d9a6b754a193c0b0bcd878b 100644 (file)
@@ -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
 ==========