f4pga-sdf-timing
f4pga-sdf-timing copied to clipboard
Python library for working Standard Delay Format (SDF) Timing Annotation files.
This pull requests makes quite a few changes to the original code. The list of major updates: * Removed parser internal helper collections. The updated parser now returns the parser...
https://github.com/SymbiFlow/actions/tree/main/checks Should probably replace the scripts at; - https://github.com/SymbiFlow/python-sdf-timing/blob/master/.github/check_license.sh - https://github.com/SymbiFlow/python-sdf-timing/blob/master/.github/check_python_scripts.sh
We need syntax highlighting for SDF files. pygments is used by sphinx, so we should add SDF syntax highlighting to that. http://pygments.org/docs/lexerdevelopment/
I was thinking it was part of https://docs.pytest.org/en/latest/goodpractices.html Maybe it is just `py.test --doctest-modules` without any arguments? _Originally posted by @mithro in https://github.com/SymbiFlow/python-sdf-timing/pull/26_
We need a tool which takes a SDF file and generates a "canonical" form. It probably wants to sort via `INSTANCE` and then `CELLTYPE`. Currently we get SLICEL and SLICEM...
From https://help.github.com/en/articles/creating-and-highlighting-code-blocks#syntax-highlighting > We use [Linguist](https://github.com/github/linguist) to perform language detection and to select [third-party grammars](https://github.com/github/linguist/blob/master/vendor/README.md) for syntax highlighting. You can find out which keywords are [valid in the languages YAML...
According to the IEEE Standard for Standard Delay Format (SDF) 1497-2001, there are many instances in the grammar where a single float or a float enclosed in parentheses can be...