• Skip to main content
  • Skip to search
  • Skip to footer
Cadence Home
  • This search text may be transcribed, used, stored, or accessed by our third-party service providers per our Cookie Policy and Privacy Policy.

  1. Community Forums
  2. Custom IC SKILL
  3. Filter instances not connected to a net in layout

Stats

  • Locked Locked
  • Replies 4
  • Subscribers 143
  • Views 9431
  • Members are here 0
This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

Filter instances not connected to a net in layout

prasadtammana
prasadtammana over 3 years ago

Hi,

I want to find the instances that are not physically (using metals) connected to an instance. If I use netId~>allInstTerms~>inst, its reporting all instances that have connectivity with that net. But, I don't want instances that are already connected. Please let me know if there is any command. 

Thanks,

Prasad

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 3 years ago

    Prasad,

    Are you using Virtuous Layout Suite XL? I potentially have a way of computing this based on incomplete net information in XL, but if you're not using XL then that approach won't work - so I didn't want to spend the time checking this approach unless it's likely to fit with your needs.

    Of course, the annotation browser already shows incomplete nets in this case, but doesn't present it in terms of finding instances with incomplete nets.

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • prasadtammana
    prasadtammana over 3 years ago in reply to Andrew Beckett

    Hi Andrew,

    yes, I'm working in XL. There are like 100 pins for a sub-cell and the signals were routed for 200um in top level with multiple metal jumps. After 200um, all of these routes needs to be connected to one buffer each. So, I'm writing a script to place the buffers close to their corresponding routing. I could select the shapes partially and arrange the buffers, but in that process the script is changing the position of the sub-cell that has 100 pins. So, I dont want the cell to be moved, only buffers should move. Please let me know the command to only select the instances with incomplete connection. 


    Thanks,
    Prasad 

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 3 years ago in reply to prasadtammana

    Hi Prasad,

    I threw this together, although it may not quite do what you want. This will return a list of any instance which has at least one pin that is unconnected. Note however that if there is a wire from the pin of the instance and the other end of that wire is unconnected, that won't show up in the list (that starts getting harder to detect, because you don't really know which instTerms on a net should be considered as connected to the net which are not (even if you started shape tracing, this might be difficult to determine, particularly for an internal net; would it be the instances connected to the biggest area of interconnect materials? I decided that this would get too complex and there was no clear answer). Hopefully this code is enough for you though:

    procedure(abFindUnconnectedInstances(@optional (cv geGetEditCellView()))
        let(((unconnectedInstances makeTable('unconnected)))
            foreach(incompleteNet lceGetIncompleteNets(cv)
                foreach(marker lceGetIncompleteNetMarkers(incompleteNet)
                    foreach(obj marker~>objects
                        when(obj~>objType=="instTerm"
                            unconnectedInstances[obj~>inst]=t
                        )
                    )
                )
            )
            unconnectedInstances->?
        )
    )

    Regards,

    Andrew

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • prasadtammana
    prasadtammana over 3 years ago in reply to Andrew Beckett

    Hi Andrew,

    Thanks for your reply. lceGetIncompleteNets and lceGetIncompleteNetMarkers commands helped me to identify the unconnected instances. 

    Thanks,
    Prasad

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel

Community Guidelines

The Cadence Design Communities support Cadence users and technologists interacting to exchange ideas, news, technical information, and best practices to solve problems and get the most from Cadence technology. The community is open to everyone, and to provide the most value, we require participants to follow our Community Guidelines that facilitate a quality exchange of ideas and information. By accessing, contributing, using or downloading any materials from the site, you agree to be bound by the full Community Guidelines.

© 2025 Cadence Design Systems, Inc. All Rights Reserved.

  • Terms of Use
  • Privacy
  • Cookie Policy
  • US Trademarks
  • Do Not Sell or Share My Personal Information