From 6b74d326d42063dc1b68f8276c5892bf90099b26 Mon Sep 17 00:00:00 2001 From: David Shah Date: Wed, 13 Jun 2018 17:07:42 +0200 Subject: experiment: Simple heuristic-based placer Signed-off-by: David Shah --- ice40/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ice40/main.cc') diff --git a/ice40/main.cc b/ice40/main.cc index d4177fb1..304fec6e 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -222,7 +222,7 @@ int main(int argc, char *argv[]) pack_design(&design); if (!vm.count("pack-only")) { - place_design(&design); + place_design_heuristic(&design); route_design(&design, verbose); } } -- cgit v1.2.3 From c0a26271790b8eb6c67d97b45f089660cdcfa37d Mon Sep 17 00:00:00 2001 From: David Shah Date: Sat, 16 Jun 2018 12:04:38 +0200 Subject: place: Tidying up the SA placer Signed-off-by: David Shah --- ice40/main.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ice40/main.cc') diff --git a/ice40/main.cc b/ice40/main.cc index 304fec6e..fea53631 100644 --- a/ice40/main.cc +++ b/ice40/main.cc @@ -222,7 +222,7 @@ int main(int argc, char *argv[]) pack_design(&design); if (!vm.count("pack-only")) { - place_design_heuristic(&design); + place_design_sa(&design); route_design(&design, verbose); } } -- cgit v1.2.3