| Author |
Message |
Clunixchit
Joined: 15 Jul 2007 Posts: 37
|
20 Aug 2008 13:01 define_design_lib |
|
|
|
|
Hello there,
I've been using Synopsys DC for a long time. Now, it seems that due to a financial issue, I'll be forced to opt RTL compiler.
Since the last 2 days, I've being porting my synthesis scripts for trials.
However, I've been unable to figure out the replacement of
define_design_lib ${lib_nam} -path ${lib_nam}
?
Is it create_library_domain ${lib_nam} for RTL compiler ?
thanks
|
|
| Back to top |
|
 |
Google AdSense

|
20 Aug 2008 13:01 Ads |
|
|
|
|
|
|
| Back to top |
|
 |
gliss
Joined: 22 Apr 2005 Posts: 670 Helped: 61 Location: Boston
|
20 Aug 2008 22:31 create_power_domain liberty asic |
|
|
|
|
I think you need two parts. One for setting up the library domain and one for specifying the targets:
The following example creates three library domains:
| Code: |
rc:/> create_library_domain {dom_1 dom_2 dom_3}
/libraries/library_domains/dom_1 /libraries/library_domains/dom_2 /libraries/library_domains/dom_3 |
To read independent libraries, type the following command:
| Code: |
set_attribute library {a.lib b.lib c.lib x.lbr y.lib} /lib*/lib*/dom_1
This command creates five libraries in the /libraries/library_domains/dom_1 directory.
|
This updates the lib_search_path
|
|
| Back to top |
|
 |
raju3295
Joined: 04 Jan 2007 Posts: 131 Helped: 5
|
21 Aug 2008 12:27 set_attribute encounter rtl compiler |
|
|
|
|
set_attribute library $lib_list
will be used for specifiyin the target libraries for the whole design,, the tool will have liberty to use the specified libs in the lib_list as needed it thinks,,,
while create_power_domain is to create the physical power domain and we can update the power domain after that with the specified library and specified instance list etc.....
Added after 2 minutes:
create_library_domain
Creates the specified library domains. To use dedicated libraries with portions of the design,
you must use this command before you read in any libraries for the specified library domains.
The command returns the directory path to the library domains that it creates.
|
|
| Back to top |
|
 |