• 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 Design
  3. ADE-XL graphical outputs accessed from Skill

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 125
  • Views 13211
  • 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

ADE-XL graphical outputs accessed from Skill

AxelS
AxelS over 11 years ago

Hi,

I would like to access the graphical results display functions that are available in ADE-XL from a skill/ocean script.

For example, I would like to bring up the "spec summary" for a given history item.

Obviously I can create a non-graphical session

ses = axlCreateSession("session0")
sdb = axlSetMainSetupDBLCV(ses "lib" "cell" "adexl")

and access the history

hist = axlGetHistoryEntry(sdb "hist_item.0")

but the "view" function only works if I have started with a graphical session all along

axlViewHistoryResults(ses hist)

Is there any way to access this from an already running graphical virtuoso session?

Is there any way to access this completely scripted from a non-graphical session, similar to the "plot" function in ocean?

 

Many thanks!

Axel

  • Cancel
  • Andrew Beckett
    Andrew Beckett over 11 years ago

    Axel,

    I've done quite a bit of digging, and I'm pretty certain this is not doable. The ADE XL UI has to be open to get the spec summary or view results pane. There's no public API to do this (and not really any private APIs that are in the right form).

    I did also look into ocnxlOutputSummary too, but that only seems to work if the  run was done in that OCEAN XL session.

    You can get at all the specs, and also all the scalar results (using axlReadHistoryResDB()), but you'd have to write all the formatting and spec output etc yourself.

    So probably you either need to open an ADE XL view (if this is running from "ocean" or "virtuoso -nographE", you could do that), or contact customer support to get an enhancement.

    Regards,

    Andrew.

     

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • Andrew Beckett
    Andrew Beckett over 11 years ago

    Axel,

    Or maybe this:

     procedure(CCFopenADEXL(lib cell view historyName)
       let((win sess sdb hist)
         win=car(exists(wid hiGetWindowList()
           (sess=axlGetWindowSession(wid)) &&
           axlGetSessionLibName(sess)==lib &&
           axlGetSessionCellName(sess)==cell &&
           axlGetSessionViewName(sess)==view
         ))
         unless(win
           win=deOpen(list(nil 'libName lib 'cellName cell 'viewName view))
         )
         sess=axlGetWindowSession(win)
         sdb=axlGetMainSetupDB(sess)
         hist=axlGetHistoryEntry(sdb historyName)
         axlViewHistoryResults(sess hist)
       )
    )

    Regards,

    Andrew.

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
  • AxelS
    AxelS over 11 years ago

    Hi Andrew,

    This works. Great, many thanks. What I was missing was the deOpen.

    Regards,

    Axel

    • 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