• 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. Digital Implementation
  3. Annotating multiple dmmmc sdf files with Xcelium

Stats

  • Locked Locked
  • Replies 1
  • Subscribers 91
  • Views 8169
  • 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

Annotating multiple dmmmc sdf files with Xcelium

DaniK
DaniK over 2 years ago

Hi all,

After running STA multi-mode-multi-corners I get more than 20 sdf files. I would like to somehow check all of them without running manually more than 20 times xcelium.

Is there any way of doing this? I was thinking of writing a script that generates different argument files for xcelium. each one of them with a different conditional compilation for the testbench, something like this:

`ifdef SDF_ENABLE_1
initial begin
$sdf_annotate("M40_SSG_hold.sdf.gz",
tb.DUT,,"SSG.log","MAXIMUM");
end
`elsif SDF_ENABLE_2
initial begin
$sdf_annotate("M40_FFG_hold.sdf.gz",
tb.DUT,,"FFG.log","MINIMUM");
end
`elsif SDF_ENABLE_
// etc
`endif

Any other ideas? It is a very basic systemverilog testbench, I just want to check timing violations in the log files.

Thanks in advance,

  • Cancel
  • DaniK
    DaniK over 2 years ago

    Well, just in case someone comes to this post, I solved it this way.

    I wrote a little script that runs xcelium with the argument file:

    #!/bin/bash
    
    # load xcelium
    module add XCELIUM
    
    # Generate directories
    for i in {1..20}
    do
      mkdir corner_$i
    done
    
    # Run xcelium in each directory
    for i in {1..20}
    do
      cd corner_$i
      xrun -f ../args -define SDF_ENABLE_$i &
      cd ..
    done
    
    • 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