You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`ADD`|`0`| Addition (`op[1] + op[2]`) *note the operand indices*|
102
102
|`ADD`|`1`| Subtraction (`op[1] - op[2]`) *note the operand indices*|
103
-
|`MUL`|`0`| Multiplication (`op[0] - op[1]`) |
103
+
|`MUL`|`0`| Multiplication (`op[0] * op[1]`) |
104
104
|`DIV`|`0`| Division (`op[0] / op[1]`) |
105
105
|`SQRT`|`0`| Square root |
106
106
|`SGNJ`|`0`| Sign injection, operation encoded in rounding mode<br>`RNE`: `op[0]` with `sign(op[1])`<br>`RTZ`: `op[0]` with `~sign(op[1])`<br>`RDN`: `op[0]` with `sign(op[0]) ^ sign(op[1])`<br>`RUP`: `op[0]` (passthrough) |
@@ -336,12 +336,12 @@ For best results, we *strongly* encourage the use of automatic retiming options
336
336
337
337
The configuration `pipe_config_t` is an enumeration of type `logic [1:0]` holding the following implementation options for the pipelines in operational units:
0 commit comments