Skip to content

Commit 47a88e4

Browse files
author
jvreca
committed
Fix table visualization.
1 parent dad9869 commit 47a88e4

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

docs/qonnx-custom-ops/quant_op.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -49,18 +49,18 @@ This operator is not part of the ONNX standard and is not currently versioned.
4949
#### Rounding modes
5050
<details>
5151
<summary>rounding modes</summary>
52-
| **Number \ ROUNDING_MODE** | ROUND=HALF_EVEN | CEIL | FLOOR | UP | DOWN | HALF_UP | HALF_DOWN |
53-
|---------------------------- |----------------- |------ |------- |---- |------ |--------- |----------- |
54-
| 5.5 | 6 | 6 | 5 | 6 | 5 | 6 | 5 |
55-
| 2.5 | 2 | 3 | 2 | 3 | 2 | 3 | 2 |
56-
| 1.6 | 2 | 2 | 1 | 2 | 1 | 2 | 2 |
57-
| 1.1 | 1 | 2 | 1 | 2 | 1 | 1 | 1 |
58-
| 1.0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
59-
| -1.0 | -1 | -1 | -1 | -1 | -1 | -1 | -1 |
60-
| -1.1 | -1 | -1 | -2 | -2 | -1 | -1 | -1 |
61-
| -1.6 | -2 | -1 | -2 | -2 | -1 | -2 | -2 |
62-
| -2.5 | -2 | -2 | -3 | -3 | -2 | -3 | -2 |
63-
| -5.5 | -6 | -5 | -6 | -6 | -5 | -6 | -5 |
52+
| **Number \ ROUNDING_MODE** | ROUND=HALF_EVEN | CEIL | FLOOR | UP | DOWN | HALF_UP | HALF_DOWN |
53+
|----------------------------|-----------------|------|-------|----|------|---------|-----------|
54+
| 5.5 | 6 | 6 | 5 | 6 | 5 | 6 | 5 |
55+
| 2.5 | 2 | 3 | 2 | 3 | 2 | 3 | 2 |
56+
| 1.6 | 2 | 2 | 1 | 2 | 1 | 2 | 2 |
57+
| 1.1 | 1 | 2 | 1 | 2 | 1 | 1 | 1 |
58+
| 1.0 | 1 | 1 | 1 | 1 | 1 | 1 | 1 |
59+
| -1.0 | -1 | -1 | -1 | -1 | -1 | -1 | -1 |
60+
| -1.1 | -1 | -1 | -2 | -2 | -1 | -1 | -1 |
61+
| -1.6 | -2 | -1 | -2 | -2 | -1 | -2 | -2 |
62+
| -2.5 | -2 | -2 | -3 | -3 | -2 | -3 | -2 |
63+
| -5.5 | -6 | -5 | -6 | -6 | -5 | -6 | -5 |
6464
</details>
6565

6666
#### Examples

0 commit comments

Comments
 (0)