assura join net syntax problem

A

ARAVIND

Guest
Hello,

Following is the syntax from assura help:
joinNets - Joins nets to form a net with the first net name you
specify in the net name list.
joinNets( {root|"cell_name"} "net_name"...
++++++++++++++++++++++++++++++++++++
My cell name is AK and nets i want to equate are VDD and vdd and power
so does my syntax sound like this:
joinNets( {root|"AK"} "VDD" "vdd" "power")
or
joinNets( root | "VDD" "vdd" "power")
++++++++++++++++++++++++++++++++++++
Both the cases are not helping me.
These are included in my rsf file in avCompare portion (paranthesis)
of the file.
But still it is not equating !
+++++++++++++++++++++++++++++++++++++
joinNets( {root|"AK"} "VDD" "vdd") this is leading to abnormal
termination of the lvs run.
+++++++++++++++++++++++++++++++++++++
Any help is welcome !
 
{root|"cell_name"} mean EITHER root OR cellname enclosed in quotation
marks.
the pipe (|) shouldn't appear in any case.
so try using
joinNets( root "VDD" "vdd" "power")
or
joinNets( "AK" "VDD" "vdd" "power")
if AK is not the root cell.

hope this helps

stéphane

"ARAVIND" <arawind@yahoo.com> wrote in message
news:1d21ceeb.0405050228.512ac7b8@posting.google.com...
Hello,

Following is the syntax from assura help:
joinNets - Joins nets to form a net with the first net name you
specify in the net name list.
joinNets( {root|"cell_name"} "net_name"...
++++++++++++++++++++++++++++++++++++
My cell name is AK and nets i want to equate are VDD and vdd and power
so does my syntax sound like this:
joinNets( {root|"AK"} "VDD" "vdd" "power")
or
joinNets( root | "VDD" "vdd" "power")
++++++++++++++++++++++++++++++++++++
Both the cases are not helping me.
These are included in my rsf file in avCompare portion (paranthesis)
of the file.
But still it is not equating !
+++++++++++++++++++++++++++++++++++++
joinNets( {root|"AK"} "VDD" "vdd") this is leading to abnormal
termination of the lvs run.
+++++++++++++++++++++++++++++++++++++
Any help is welcome !
 
Thank you stéphane,
Now I got the root or "cell_name" idea ! simple...but i got lost...thanks again.

And i tried the : joinNets( root "VDD" "vdd" "power")
As the nets i want to equate are on the root cell
on which i am running assura lvs.
No luck !

By adding this syntax do we intend the tool to equate
the nets to first net name BOTH IN SCH. and LAY. ?
My sch. has three nets VDD vdd and power.
But in my layout it is one net..

Regards,
Aravind

"S. Badel" <stephane.badel@epfl.ch> wrote in message news:<4098ec31$1@epflnews.epfl.ch>...
{root|"cell_name"} mean EITHER root OR cellname enclosed in quotation
marks.
the pipe (|) shouldn't appear in any case.
so try using
joinNets( root "VDD" "vdd" "power")
or
joinNets( "AK" "VDD" "vdd" "power")
if AK is not the root cell.

hope this helps

stéphane
 

Welcome to EDABoard.com

Sponsor

Back
Top