• 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. Creating Corners in maestro using SKILL

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 143
  • Views 14666
  • 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

Creating Corners in maestro using SKILL

KGh94
KGh94 over 7 years ago

Hello,

I was looking in the maestro documentation for a command to create a corner in my test. I couldn't find creation, but rather only enabling/disabling:

maeSetSetup(?corners '("C0" "C1") ?variables '("VDD" "IREF")?enabled nil)
; Disables the C0 and C1 corners, and the VDD and IREF global variables

Is there a way to create a corner in maestro using SKILL?

Best regards,
Karam

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 7 years ago

    Hi Karam,

    You have to use the axl functions to create the corners; there's no specific "mae" functions to do it (there's the ability to load the corners from a file, but not to define them from scratch). It's perfectly OK to use the axl functions to do this though.

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • KGh94
    KGh94 over 7 years ago in reply to Andrew Beckett

    Hello Andrew,

    Thank you for the confirmation. I noticed that it's not possible to disable nominal corner in maestro:

    ; check active corners
    maeGetSetup(?typeName "corners" ?enabled t)    => ("nominal" "myCorner")

    ; disable nominal corner
    maeSetSetup(?corners '("nominal") ?enabled nil)

    I get the message:

    WARNING (ASSEMBLER-8047): Failed to disabled corner nominal because it does not exist in the currently active setup. Specify a valid corner name. Use maeGetSetup(?corners) to get list of corners available in this session.

    I would also point out that the underlined command is incorrect and would return an error..

    Is there a work-around for disabling the nominal corner?

    Best regards,
    Karam

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 7 years ago in reply to KGh94

    Hi Karam,

    It's a limitation of the API, and is covered by CCR 1920347. Hopefully we can fix this before too long as well.

    The workaround is to use:

    sess=maeOpenSetup(...) ; make sure you record the session when you start with maeOpenSetup
    ; could also use sess=axlGetWindowSession() if running interactively
    sdb=axlGetMainSetupDB(sess)
    axlSetNominalCornerEnabled(sdb 0)

    This will disable it. Set the second argument to 1 to enable the nominal corner.

    Regards,

    Andrew.

    • 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