We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
We need a tool which takes a SDF file and generates a "canonical" form. It probably wants to sort via INSTANCE and then CELLTYPE.
INSTANCE
CELLTYPE
Currently we get SLICEL and SLICEM timing information stored together;
(CELL (CELLTYPE "SELMUX2_1") (INSTANCE SLICEL/F7AMUX) (DELAY (ABSOLUTE (IOPATH 0 OUT (0.053::0.067)(0.153::0.190)) (IOPATH 1 OUT (0.055::0.069)(0.156::0.193)) (IOPATH S0 OUT (0.085::0.106)(0.222::0.276)) ) ) ) (CELL (CELLTYPE "LUT_OR_MEM5LRAM") (INSTANCE SLICEM/B5LUT) (DELAY (ABSOLUTE (IOPATH A1 O5 (0.045::0.056)(0.122::0.152)) (IOPATH A2 O5 (0.044::0.055)(0.122::0.152)) (IOPATH A3 O5 (0.043::0.053)(0.121::0.150)) (IOPATH A4 O5 (0.047::0.058)(0.121::0.150)) (IOPATH A5 O5 (0.048::0.060)(0.094::0.117)) (IOPATH CLK O5 (0.348::0.434)(0.957::1.187)) ) ) (TIMINGCHECK (HOLD CLK (posedge CLK) (0.154::0.191)) (SETUP CLK (posedge CLK) (0.250::0.311)) ) ) (CELL (CELLTYPE "LUT_OR_MEM5SHFREG") (INSTANCE SLICEM/B5LUT) (DELAY (ABSOLUTE (IOPATH CLK O5 (0.439::0.547)(1.190::1.476)) ) ) (TIMINGCHECK (HOLD CLK (posedge CLK) (0.070::0.087)) (SETUP CLK (posedge CLK) (0.126::0.156)) ) ) (CELL (CELLTYPE "LUT6") (INSTANCE SLICEL/C6LUT) (DELAY (ABSOLUTE (IOPATH A1 O6 (0.045::0.056)(0.100::0.124)) (IOPATH A2 O6 (0.045::0.056)(0.100::0.124)) (IOPATH A3 O6 (0.045::0.056)(0.100::0.124)) (IOPATH A4 O6 (0.045::0.056)(0.100::0.124)) (IOPATH A5 O6 (0.045::0.056)(0.100::0.124)) (IOPATH A6 O6 (0.045::0.056)(0.100::0.124)) ) ) )
The text was updated successfully, but these errors were encountered:
a basic version of such tool already exists see: https://github.com/SymbiFlow/prjxray/blob/master/utils/sdfmerge.py
@mithro do you think it should be part of this lib?
GitHubSymbiFlow/prjxrayDocumenting the Xilinx 7-series bit-stream format. - SymbiFlow/prjxray
Sorry, something went wrong.
@kgugala Yes.
No branches or pull requests
We need a tool which takes a SDF file and generates a "canonical" form. It probably wants to sort via
INSTANCE
and thenCELLTYPE
.Currently we get SLICEL and SLICEM timing information stored together;
The text was updated successfully, but these errors were encountered: