Skip to content

Commit

Permalink
Merge pull request #373 from byuccl/duplicate_flow
Browse files Browse the repository at this point in the history
Remove duplicate flow
  • Loading branch information
jgoeders authored Nov 28, 2023
2 parents 969ba9c + 1b4838f commit 9ef0758
Show file tree
Hide file tree
Showing 7 changed files with 0 additions and 145 deletions.
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,6 @@ Currently supported flows:
* `vivado_ooc`
* `vivado_and_reversed`
* `vivado_phys_netlist`
* `vivado_phys_netlist_xrev`
* `vivado_phys_netlist_cmp`
* `vivado_structural_error_injection`
* `vivado_conformal`
Expand Down
33 changes: 0 additions & 33 deletions bfasst/ninja_flows/vivado_phys_netlist_xrev.py

This file was deleted.

22 changes: 0 additions & 22 deletions experiments/tests/vivado_phys_netlist_xrev.yaml

This file was deleted.

1 change: 0 additions & 1 deletion quick_test_flows.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ python scripts/run.py vivado_bit_analysis designs/basic/and3
python scripts/run.py vivado_conformal designs/basic/and3
python scripts/run.py vivado_ooc designs/basic/and3
python scripts/run.py vivado_phys_netlist_cmp designs/basic/and3
python scripts/run.py vivado_phys_netlist_xrev designs/basic/and3
python scripts/run.py vivado_phys_netlist designs/basic/and3
python scripts/run.py vivado_structural_error_injection designs/basic/and3 --flow_arguments="{'num_runs': 5}"
python scripts/run.py vivado_yosys_impl designs/basic/and3
Expand Down
77 changes: 0 additions & 77 deletions test/flows/test_vivado_phys_netlist_xrev_flow.py

This file was deleted.

7 changes: 0 additions & 7 deletions test/scripts/test_ninja_flow_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
from bfasst.ninja_flows.vivado import Vivado
from bfasst.ninja_flows.vivado_bit_analysis import VivadoBitAnalysis
from bfasst.ninja_flows.vivado_phys_netlist import VivadoPhysNetlist
from bfasst.ninja_flows.vivado_phys_netlist_xrev import VivadoPhysNetlistXrev
from bfasst.ninja_flows.vivado_phys_netlist_cmp import VivadoPhysNetlistCmp
from bfasst.ninja_flows.vivado_structural_error_injection import VivadoStructuralErrorInjection
from bfasst.ninja_flows.vivado_conformal import VivadoConformal
Expand Down Expand Up @@ -57,9 +56,6 @@ def test_create_vivado_reversed_flow(self):
def test_create_vivado_phys_netlist_flow(self):
self.__check_flow_creation(VivadoPhysNetlist, "vivado_phys_netlist")

def test_create_phys_reversed_flow(self):
self.__check_flow_creation(VivadoPhysNetlistXrev, "vivado_phys_netlist_xrev")

def test_create_phys_compare_flow(self):
self.__check_flow_creation(VivadoPhysNetlistCmp, "vivado_phys_netlist_cmp")

Expand Down Expand Up @@ -103,9 +99,6 @@ def test_run_vivado_reversed_flow(self):
def test_run_vivado_phys_netlist_flow(self):
self.__check_flow_run("vivado_phys_netlist", 9)

def test_run_phys_reversed_flow(self):
self.__check_flow_run("vivado_phys_netlist_xrev", 11)

def test_run_phys_compare_flow(self):
self.__check_flow_run("vivado_phys_netlist_cmp", 12)

Expand Down
4 changes: 0 additions & 4 deletions test/scripts/test_run.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,10 +51,6 @@ def test_run_vivado_phys_netlist_flow(self):
"""Test that the runner runs the vivado_phys_netlist flow without errors"""
self.__run_flow("vivado_phys_netlist")

def test_run_vivado_phys_netlist_xrev_flow(self):
"""Test that the runner runs the vivado_phys_netlist_xrev flow without errors"""
self.__run_flow("vivado_phys_netlist_xrev")

def test_run_vivado_phys_netlist_cmp_flow(self):
"""Test that the runner runs the vivado_phys_netlist_cmp flow without errors"""
self.__run_flow("vivado_phys_netlist_cmp")
Expand Down

0 comments on commit 9ef0758

Please sign in to comment.