From eb7053446be36265a70f8a1cec91f9b632d7a900 Mon Sep 17 00:00:00 2001 From: Simon Hofmann Date: Fri, 7 Jun 2024 13:44:21 +0200 Subject: [PATCH] added wiring reduction and second nanoplacer paper --- src/mnt/bench/templates/index.html | 49 +++++++++++++++++------------- 1 file changed, 28 insertions(+), 21 deletions(-) diff --git a/src/mnt/bench/templates/index.html b/src/mnt/bench/templates/index.html index b8c52a9..b361a71 100644 --- a/src/mnt/bench/templates/index.html +++ b/src/mnt/bench/templates/index.html @@ -103,14 +103,15 @@

Welcome to the Munich Nanotech Benchmark Library (MNT Bench)!

The development and improvement of physical design tools for - nanotechnologies, such as Silicon Dangling Bonds (SiDBS), - is critical to the success of this emerging technology. - Furthermore, simulation and fabrication heavily rely on the usage of - area-efficient layouts. To compare the results of new physical design - algorithms and provide the most optimal layouts found thus far, this - benchmark suite offers common benchmark functions in the field combined - with the best state-of-the-art layouts w.r.t. to area. In addition to - layouts using different gate sets, such as the + nanotechnologies, such as + Silicon Dangling Bonds (SiDBS), is critical to the success of + this emerging technology. Furthermore, simulation and fabrication + heavily rely on the usage of area-efficient layouts. To compare the + results of new physical design algorithms and provide the most optimal + layouts found thus far, this benchmark suite offers common benchmark + functions in the field combined with the best state-of-the-art layouts + w.r.t. to area. In addition to layouts using different gate sets, such + as the QCA ONEPhysical Design Algorithm target="_blank" style="text-decoration: none" >📄📄 @@ -692,6 +698,11 @@

Optimization Algorithm
target="_blank" style="text-decoration: none" >📄(+Wiring Reduction)📄 @@ -866,7 +877,8 @@

Reference

@inproceedings{hofmann2024mntbench,
  author={Hofmann, Simon and Walter, Marcel and Wille, Robert},
-   booktitle = {{2024 Design, Automation and Test in Europe (DATE)}},
+   booktitle = {{2024 Design, Automation and Test in + Europe (DATE)}},
  title={{{MNT Bench}}: Benchmarking Software and Layout Libraries for Field-coupled Nanocomputing},
  year={2024},
@@ -1078,18 +1090,13 @@

Reference

} function enable_optimization_algorithm_selection(){ - if (!document.getElementById("bestagon").checked){ - if (document.getElementById("ortho").checked){ - setCheckboxState("post-layout", false, false, false); - setCheckboxState("input-ordering", false, false, false); - } - else if (document.getElementById("nanoplacer").checked){ - setCheckboxState("post-layout", false, false, false); - setCheckboxState("input-ordering", false, true, true); - } - else { - disable_optimization_algorithm_selection(); - } + if (document.getElementById("ortho").checked){ + setCheckboxState("post-layout", false, false, false); + setCheckboxState("input-ordering", false, false, false); + } + else if (document.getElementById("nanoplacer").checked){ + setCheckboxState("post-layout", false, false, false); + setCheckboxState("input-ordering", false, true, true); } else { disable_optimization_algorithm_selection();