原创 PT中常用命令

size_cell:改變cell的大小 insert_buffer:插入buffer restore_session

原创 wildcard-makefile

在Makefile規則中,通配符會被自動展開。但在變量的定義和函數引用時,通配符將失效。這種情況下如果需要通配符有效,就需要使用函數“wildcard”,它的用法是:$(wildcard PATTERN...) 。在Makefile中,它

原创 grep命令學習

grep的常用格式:grep [option] “pattern” [file] 含義:在file文件中查找pattern -V:版本信息 Matcher Selection(匹配器選擇): -E :開啓擴展(Extend)的正則表達式。

原创 ATPG

Automatic Test Pattern Generation(ATPG) ATPG有效性是衡量測試錯誤覆蓋了的重要指標。測試是向一個處於已知狀態的對象施加確定的輸入激勵,並測量其確定的輸出響應與理想的期待響應進行比較,進而判斷被測對

原创 數組和list------perl

pop:截取最後一個元素 push:數組最後添加元素 shift:截取第一個元素 unshift:數組開頭添加元素 sort:以字符串順序對數組內容進行排序 reverse:反序 @name:對整個數組進行操作 $name[subscri

原创 LEC理解

lec:等效邏輯檢查logic equality check,用於檢查網表在綜合前後或佈線前後的邏輯等價性。 S家執行LEC的工具爲synopsys formality;C家執行LEC的工具爲cadence conformal。 http

原创 DRO cell

目前瞭解到的: 1、stdcell dro擺放在core中心的位置 2、memory dro擺放在相應的一組memory中間,abutted其中一個memeory的位置 3、DRO用的VT type需要進行檢查 4、min distanc

原创 Mkaefile中的-include

如果指示符“include”指定的文件不是以斜線開始(絕對路徑,如/usr/src/Makefile...),而且當前目錄下也不存在此文件;make將根據文件名試圖在以下幾個目錄下查找:首先,查找使用命令行選項“-I”或者“--inclu

原创 Placement Optimization with Deep Reinforcement Learning------paper reading

Placement Optimization with Deep Reinforcement Learning author use deep reinforcement learning to complish the placemen

原创 dbget命令練習

1、採用dbGet命令得到設計的名字 dbGet top.name 2、採用dbGet命令抓取設計的core box大小 dbget top.fPlan.Corebox_area 3、採用dbGet命令抓取設計中所有block的名稱 db

原创 ecoPlace

Incrementally places the unplaced standard cells. -fixPlacedInsts {true | false}: Specifies that instances with the PLA

原创 ecoRoute

This command is based on the Nanometer router. You must first run ecoDefIn and ecoPlace before you use this command. -c

原创 TCD cell

TCD (Test-key Critical Dimension) Cell FAB工廠定位檢測用,防止工藝偏差。 A TCD cell is placed at every 2mmX2mm square。 The TCD structu

原创 GDP: Generalized Device Placement for Dataflow Graphs-------paper reading

This paper use graph neural network to solve placement. In addition, it is an end-to-end device placement method: graph

原创 ifeq-makefile語言

ifeq(arg1,arg2)對比兩個參數是否相同。 ifneq與ifeq的判斷結果相反。 ifdef判斷語句是否被定義。 ifndef與ifdef的判斷結果相反。