NanoPlaceR - An open-source framework for placement and routing of Field-coupled Nanotechnologies based on reinforcement learning.
Project description
NanoPlaceR: Placement and Routing for Field-coupled Nanocomputing (FCN) based on Reinforcement Learning
NanoPlaceR is a tool for the physical design of FCN circuitry based on Reinforcement Learning. It can generate layouts for logic networks up to ~200 gates, while requiring ~50% less area than the state-of-the-art heuristic approach.
Related publication presented at DAC: paper
Inspired by recent developments in the field of machine learning-aided design automation, this tool combines reinforcement learning with efficient path routing algorithms based on established algorithms such as A* search. Masked Proximal Policy Optimization (PPO) is used to learn the placement of logic elements, which is further accelerated by incorporating an action mask computed based on the netlist structure and the last partial placement, ensuring valid and compact solutions. To minimize the occurrence of unpromising partial placements, several checks constantly ensure the early termination of sub-par solutions. Furthermore, the routing of placed gates is incorporated directly into the placement step using established routing strategies. The following figure outlines the methodology:
Usage of NanoPlaceR
Currently, due to the Open-AI gym dependency, only python versions up to 3.10 are supported.
If you do not have a virtual environment set up, the following steps outline one possible way to do so. First, install virtualenv:
$ pip install virtualenv
Then create a new virtual environment in your project folder and activate it:
$ mkdir nano_placement
$ cd nano_placement
$ python -m venv venv
$ source venv/bin/activate
NanoPlaceR can be installed via pip:
(venv) $ pip install mnt.nanoplacer
You can either change the parameters (e.g. logic function, clocking scheme, layout width etc.) in main.py
or simply use the tool in the command line.
(venv) $ python main.py -h
usage: main.py [-h] [-b {fontes18,trindade16,EPFL,TOY,ISCAS85}] [-f FUNCTION] [-c {2DDWave,USE, RES}] [-t {QCA,SiDB, Gate-level}] [-l] [-lw LAYOUT_WIDTH] [-lh LAYOUT_HEIGHT] [-ts TIME_STEPS] [-r] [-v {0,1}]
Optional arguments:
-h, --help Show this help message and exit.
-b, --benchmark Benchmark set.
-f, --function Logic function to generate layout for.
-c, --clocking_scheme Underlying clocking scheme.
-t, --technology Underlying technology (QCA, SiDB or technology-independent Gate-level layout).
-l, --minimal_layout_dimension If True, experimentally found minimal layout dimensions are used.
-lw, --layout_width User defined layout width.
-lh, --layout_height User defined layout height.
-ts, --time_steps Number of time steps to train the RL agent.
-r, --reset_model If True, reset saved model and train from scratch.
-v, --verbosity 0: No information. 1: Print layout after every new best placement. 2: Print training metrics. 3: 1 and 2 combined.
Repository Structure
.
├── benchmarks/ # common benchmark sets
├── images/ # generated layouts in .svg format are saved here
├── models/ # ppo models
├── placement_envs/
│ ├── nano_placement_env/ # placement environment
│ ├── utils/
│ └── placement_utils/ # placement util functions
│ └── layout_dimenions/ # predefined layout dimensions for certain functions
├── tensorboard/ # tensorboard log directory
Monitoring Training
Training can be monitored using Tensorboard.
Install it via
(venv) $ pip install tensorboard
and run the following command from within the NanoPlaceR directory:
(venv) $ cd NanoPlaceR
(venv) $ tensorboard --logdir="tensorboard/{Insert function name here}"
References
In case you are using NanoPlaceR in your work, we would be thankful if you referred to it by citing the following publication:
@INPROCEEDINGS{hofmann2023nanoplacer,
author = {S. Hofmann and M. Walter and L. Servadei and R. Wille},
title = {{Late Breaking Results From Hybrid Design Automation for Field-coupled Nanotechnologies}},
booktitle = {{Design Automation Conference (DAC)}},
year = {2023},
}
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file mnt.nanoplacer-0.1.1.tar.gz
.
File metadata
- Download URL: mnt.nanoplacer-0.1.1.tar.gz
- Upload date:
- Size: 4.2 MB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/4.0.2 CPython/3.11.7
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | f5b6db2b8769d55e07d2f5324c69cc5378b2139b4e0a139f964deee5949050ba |
|
MD5 | efb38a6b6546611957217d6a0d630454 |
|
BLAKE2b-256 | c23b49481875da86c4e400822fa96b9ffe55e762f40f84e22177d28f38567d16 |