Skip to content

Commit

Permalink
pr comments
Browse files Browse the repository at this point in the history
  • Loading branch information
vkovinicTT committed Dec 25, 2024
1 parent 80015b1 commit 6dd3150
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@
# Project setup
- [Building](./build.md)
- [Testing](./test.md)
- [Verification](./verification.md)
- [Tools](./tools.md)

# Dev Notes
- [Running standalone FFE generated TTIRs](./dev_notes/standalone_ttir_run.md)
- [Verification](./verification.md)

# User Guide
- [Getting Started](./getting-started.md)
16 changes: 9 additions & 7 deletions docs/src/verification.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,12 +61,14 @@ def test_add():
## Verify Config Overview

If `VerifyConfig` isn't passed as a param, default one will be used. Currently through `VerifyConfig` you can disable/enable:
| Feature | Enabled (default) |
|-----------------------------------|:-----------------:|
| Verification as a method | `True` |
| Output size check | `True` |
| Output type check | `True` |
| Output shape check | `True` |

| Feature | Name | Enabled (default) |
|-----------------------------------|---------------------|:-----------------:|
| Verification as a method | `enabled` | `True` |
| Output length check | `verify_size` | `True` |
| Output type check | `verify_dtype` | `True` |
| Output shape check | `verify_shape` | `True` |


For more information about `VerifyConfig` you can check `forge/forge/verify/config.py`.

Expand Down Expand Up @@ -104,7 +106,7 @@ For more information about **Checkers** you can look at `forge/forge/verify/valu
<br/>
<br/>

<img src="imgs/checkers/checkers.svg" alt="Checkers" style="width: 1200%;">
<img src="imgs/checkers/checkers.svg" alt="Checkers" style="width: 120%;">



Expand Down

0 comments on commit 6dd3150

Please sign in to comment.