Skip to content
This repository was archived by the owner on Dec 22, 2021. It is now read-only.

Commit e0fff32

Browse files
authored
Add SIMD pmin/pmax and floating point round instructions to syntax (#353)
1 parent 65d3504 commit e0fff32

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

document/core/syntax/instructions.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -298,14 +298,20 @@ SIMD instructions provide basic operations over :ref:`values <syntax-value>` of
298298
\production{SIMD floating-point unary operator} & \vfunop &::=&
299299
\K{abs} ~|~
300300
\K{neg} ~|~
301-
\K{sqrt} \\
301+
\K{sqrt} ~|~
302+
\K{ceil} ~|~
303+
\K{floor} ~|~
304+
\K{trunc} ~|~
305+
\K{nearest} \\
302306
\production{SIMD floating-point binary operator} & \vfbinop &::=&
303307
\K{add} ~|~
304308
\K{sub} ~|~
305309
\K{mul} ~|~
306310
\K{div} ~|~
307311
\K{min} ~|~
308-
\K{max} \\
312+
\K{max} ~|~
313+
\K{pmin} ~|~
314+
\K{pmax} \\
309315
\end{array}
310316
311317
.. _syntax-simd-shape:

0 commit comments

Comments
 (0)