mirror of https://github.com/openXC7/prjxray.git
Fix formatting after updating license headers
Signed-off-by: Tomasz Michalak <tmichalak@antmicro.com> Signed-off-by: Tim 'mithro' Ansell <tansell@google.com>
This commit is contained in:
parent
300bc62227
commit
0357b3e4b1
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" Sanity checks FASM output from IOB fuzzer.
|
""" Sanity checks FASM output from IOB fuzzer.
|
||||||
The IOB fuzzer is fairly complicated, and it's output is hard to verify by
|
The IOB fuzzer is fairly complicated, and it's output is hard to verify by
|
||||||
inspected. For this reason, check_results.py was written to compare the
|
inspected. For this reason, check_results.py was written to compare the
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" IOB bits are more complicated than can be easily expressed to segmaker.
|
""" IOB bits are more complicated than can be easily expressed to segmaker.
|
||||||
There are couple cases that need to be handled here:
|
There are couple cases that need to be handled here:
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" Tool for building zero db file for BUFG pips.
|
""" Tool for building zero db file for BUFG pips.
|
||||||
This requires that the rdb files be good enough to identify all the 0 candidate
|
This requires that the rdb files be good enough to identify all the 0 candidate
|
||||||
features, which may take multiple manual iterations. Manual iterations can
|
features, which may take multiple manual iterations. Manual iterations can
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" Tool for building zero db file for BUFG pips.
|
""" Tool for building zero db file for BUFG pips.
|
||||||
This requires that the rdb files be good enough to identify all the 0 candidate
|
This requires that the rdb files be good enough to identify all the 0 candidate
|
||||||
features, which may take multiple manual iterations. Manual iterations can
|
features, which may take multiple manual iterations. Manual iterations can
|
||||||
|
|
|
||||||
|
|
@ -10,6 +10,7 @@
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
import argparse
|
import argparse
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
parser = argparse.ArgumentParser(
|
parser = argparse.ArgumentParser(
|
||||||
description="Converts generic BRAM pips to BRAM_L and BRAM_R pips.")
|
description="Converts generic BRAM pips to BRAM_L and BRAM_R pips.")
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" Reduce tile types to prototypes that are always correct.
|
""" Reduce tile types to prototypes that are always correct.
|
||||||
The dump-all generate.tcl dumps all instances of each tile type. Some tiles
|
The dump-all generate.tcl dumps all instances of each tile type. Some tiles
|
||||||
are missing wires. reduce_tile_types.py generates the superset tile that
|
are missing wires. reduce_tile_types.py generates the superset tile that
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" Description of a site type """
|
""" Description of a site type """
|
||||||
from collections import namedtuple
|
from collections import namedtuple
|
||||||
import enum
|
import enum
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,7 @@
|
||||||
|
|
||||||
from prjxray import util
|
from prjxray import util
|
||||||
|
|
||||||
|
|
||||||
class StateGen(object):
|
class StateGen(object):
|
||||||
""" Manages fuzzer state generation across multiple sites.
|
""" Manages fuzzer state generation across multiple sites.
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" TileSegbitsAlias provides an alias from one tile type to another.
|
""" TileSegbitsAlias provides an alias from one tile type to another.
|
||||||
TileSegbitsAlias performs severals functions to achieve the alias:
|
TileSegbitsAlias performs severals functions to achieve the alias:
|
||||||
- Remaps tile type from the original tile type to the alias tile type
|
- Remaps tile type from the original tile type to the alias tile type
|
||||||
|
|
|
||||||
|
|
@ -8,7 +8,6 @@
|
||||||
# https://opensource.org/licenses/ISC
|
# https://opensource.org/licenses/ISC
|
||||||
#
|
#
|
||||||
# SPDX-License-Identifier: ISC
|
# SPDX-License-Identifier: ISC
|
||||||
|
|
||||||
""" Route timing delay definitions.
|
""" Route timing delay definitions.
|
||||||
Routing delay is formed from two parts in this model:
|
Routing delay is formed from two parts in this model:
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue