babooppa6 / rsyn-x

Rsyn – An Extensible Physical Synthesis Framework

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Universidade Federal do Rio Grande do Sul

Rsyn

Getting Started | Tutorials | Wiki | Benchmarks

Rsyn is an open-source C++ framework for physical synthesis research and education.

Typical optimizations that can be built on top of Rsyn include but not limited to placement, routing, sizing and buffering.

The framework integrates parsers for common academic and industrial formats as Bookshelf, LEF/DEF, Verilog, Liberty, SDC and SPEF. It provides support for benchmarks from several EDA contests (e.g ISPD, ICCAD).

Standard tools as static timing analysis (STA), routing and congestion estimation are included. A built-in graphics user interface (GUI) is also available.

Rsyn-gui

The netlist data model makes use of the new features of C++11. So it becomes very natural and easy to traverse the netlist.

// Traverse pins in reverse topological order.
for (Rsyn::Pin pin : module.allPinsInReverseTopologicalOrder()) {
	for (Rsyn::Arc arc : pin.allOutgoingArcs()) { /**/ }
	for (Rsyn::Arc arc : pin.allIncomingArcs()) { /**/ }

	Rsyn::Net net = pin.getNet();
	if (!net) {
		std::cout << “Unconnected pin ‘” + pin.getFullName() + “‘\n”;
	} // end if
} // end for 

Objects can be extended via attributes, which internally handle modifications in the netlist.

// Creating a new attribute called “visited” to the nets
Rsyn::Attribute<Rsyn::Net, int> attr = design.createAttribute();

for (Rsyn::Net net : module.allNets()) {
	attr[net] = computeSomething(net); 
} // end for

Rsyn::Net newNet = module.createNet();
attr[newNet] = computeSomething(net);

Supported Compilers and Operating Systems:

Compiler Operating System
GCC 5.4.0 Ubuntu 16.04.3 LTS
GCC 7.2.0 Ubuntu 17.10

Index

More details about Rsyn are available at wiki.

Reference

Please cite the ISPD 17 paper:

G. Flach, M. Fogaça, J. Monteiro, M. Johann and R. Reis, "Rsyn: An Extensible Physical Synthesis Framework", Proceedings of the 2017 ACM on International Symposium on Physical Design (ISPD), pp. 33-40, Portland, Oregon, USA 2017.

Contributors

Creators

Advisors

Contributors

Former Contributors

Tiago Reimann, Julia Puget, André Oliveira, Carolina Lima, Felipe Pinto, and Lucas Cavalheiro

Honorable Mention

Renato Hentschke, and Gustavo Wilke

Third-Party Projects

third-projects

Contact

rsyn.design@gmail.com

License

Copyright 2014-2017 Rsyn

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

Acknowledgement

This work is partially supported by Brazilian Coordination for the Improvement of Higher Education Personnel (CAPES) and by the National Council for Scientific and Technological Development (CNPq).

About

Rsyn – An Extensible Physical Synthesis Framework


Languages

Language:C++ 98.1%Language:C 1.1%Language:Shell 0.2%Language:CMake 0.2%Language:Yacc 0.2%Language:Lex 0.1%Language:Makefile 0.1%Language:Python 0.0%Language:Verilog 0.0%