• 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. getting an unknown error while using abeLayerXor in lay...

Stats

  • Locked Locked
  • Replies 2
  • Subscribers 143
  • Views 13612
  • 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

getting an unknown error while using abeLayerXor in layout

RAGHU2634
RAGHU2634 over 6 years ago

Hi,

I am trying to generate a layer in the regions of (don't overlap b/w two layers) .This are the steps i followed . This is giving an error saying 

*Error* abeLayerXor: First layer not correctly specified - nil

Please let me know the issue

tf=techGetTechFile(geGetEditCellView())

tf1=techFindLayer(tf 12)
tf2=techFindLayer(tf 15)
tf3=techFindLayer(tf 18)
tf4=techFindLayer(tf 1090)
tf5=techFindLayer(tf 1091)
tf6=techFindLayer(tf 1092)
tf7=techFindLayer(tf 1093)
tf8=techFindLayer(tf 1117)
tf9=techFindLayer(tf 1118)
tf10=techFindLayer(tf 1130)
tf11=techFindLayer(tf 236)

tf12=techFindLayer(tf 59)


abeInit(geGetEditCellView())

abeLayerXor(tf1 tf11 tf12)

Thanks,

Raghu

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 6 years ago
    The abeLayerXor does not accept technology file layer representations. It needs an "abe" layer object - as produced by abeNewLayer, abeLayerFromCellView, abeLayerFromShapes or in fact from any of the other abe layer functions. So something like:
    abe1=abeLayerFromCellView(tf1~>name)
    abe11=abeLayerFromCellView(tf11~>name)
    abeOut=abeNewLayer()
    abeLayerXor(abe1 abe11 abeOut)
    abeLayerToCellView(abeOut tf12~>name)
    is probably what you're trying to do. Not sure why you're doing everything with layer numbers - the abe functions expect layer names (hence the ~>name that I use above).
    Regards,
    Andrew.
    • Cancel
    • Vote Up +1 Vote Down
    • Cancel
  • RAGHU2634
    RAGHU2634 over 6 years ago in reply to Andrew Beckett

    techFindLayer works with numebrs too . Thanks andrew. I got it now

    • Cancel
    • Vote Up +1 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