aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SUPPORTED_OPS.md5
-rw-r--r--ethosu/vela/vela.py5
2 files changed, 6 insertions, 4 deletions
diff --git a/SUPPORTED_OPS.md b/SUPPORTED_OPS.md
index 81a3bbc8..fdda1570 100644
--- a/SUPPORTED_OPS.md
+++ b/SUPPORTED_OPS.md
@@ -3,7 +3,8 @@
This file was automatically generated by Vela using the `--supported-ops-report` parameter.
Vela version: `2.0.0`
-This file complies with [**CommonMark.**](https://commonmark.org)
+This file complies with
+[**Gitiles Markdown syntax**](https://github.com/google/gitiles/blob/master/Documentation/markdown.md)
## Summary Table
@@ -13,7 +14,7 @@ For any other TFLite operator not listed, will be left untouched and scheduled o
Please check the supported operator list for your chosen runtime for further information.
| Operator | Constraints |
-| - | - |
+| --- | --- |
| ABS | [Generic](#generic-constraints), [Specific](#abs-constraints) |
| ADD | [Generic](#generic-constraints), [Specific](#add-constraints) |
| AVERAGE_POOL_2D | [Generic](#generic-constraints), [Specific](#average_pool_2d-constraints) |
diff --git a/ethosu/vela/vela.py b/ethosu/vela/vela.py
index 7b766855..f03bae75 100644
--- a/ethosu/vela/vela.py
+++ b/ethosu/vela/vela.py
@@ -130,7 +130,8 @@ def generate_supported_ops():
"This file was automatically generated by Vela using the `--supported-ops-report` parameter. ",
f"Vela version: `{__version__}`",
"",
- "This file complies with [**CommonMark.**](https://commonmark.org)",
+ "This file complies with",
+ "[**Gitiles Markdown syntax**](https://github.com/google/gitiles/blob/master/Documentation/markdown.md)",
"",
"## Summary Table",
"",
@@ -140,7 +141,7 @@ def generate_supported_ops():
"Please check the supported operator list for your chosen runtime for further information.",
"",
"| Operator | Constraints |",
- "| - | - |",
+ "| --- | --- |",
]
supported = SupportedOperators()
op_constraint_links = []