tf_parser

Crates.iotf_parser
lib.rstf_parser
version0.1.0
sourcesrc
created_at2021-02-05 06:03:57.231053
updated_at2021-02-05 06:03:57.231053
descriptiontechnology(.tf) file parser in Rust
homepage
repositoryhttps://github.com/erihsu/tf_parser
max_upload_size
id350913
size189,033
Eric (erihsu)

documentation

README

tf_parser

Technology file parser in Rust

Introduction

Technology file is commonly used in modern EDA PR tools to define technology process information including layer, contact, designrule and etc. EDA tool vendor may require foundries to provide this kind of file in different text format in PDK(process design kit).

EDA parser in Rust

The project is a part of backend EDA parser collection in Rust. We're also developing lef/spef parser in Rust and finally opensource.

Similar project

For frontend EDA parser in Rust, you can find sv-parser, sdc-parser

Technology file specification

Unfortunately, it's very hard to find universal technology file specification. Each EDA vendor define their own technology file format. We follow the .tf text format to develop the parser.

The .tf generally contains 10 parts: Comment, Technology, Color, Stipple, Tile, Layer, ContactCode, DesignRule, PRRule and DensityRule. We develop each block's subparser and combine them together to parse the whole .tf file

The parser

The parser is developed based on nom parser combinator framework and currently support parse Synopsys Apollo technology format file. You can try it under example

If you are interested in our work, please contact [xuzhenyutc@icloud.com]

Commit count: 40

cargo fmt