• 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. Cadence to Hierarchical PDF

Stats

  • Locked Locked
  • Replies 3
  • Subscribers 126
  • Views 16725
  • 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

Cadence to Hierarchical PDF

Drwinco
Drwinco over 15 years ago

I am trying to lend some help in reviewing a customer's design. They are providing bookmarked PDF output file from Cadence schematics however some of the hierarchy are RTL generated which makes for very dense drawings. The result is I lose the ability to read wire names, pin names and instance names in some of the higher level blocks. Is there any way to increase the resolution in a VIrtuoso schematic to PDF so as not to lose the pin/instance and wire name information? I understand that in the cdsplotinit file you can specify the dots per inch DPI resolution, page size etc for plotting and that this is then used in converting the .ps file to PDF. Also is there a tool that Cadence has that will allow traversable hierarchy in PDF or is that the bookmark scenario?

  • Cancel
Parents
  • dmay
    dmay over 15 years ago

    Here are some sample cdsplotinit settings that create various resolutions for pdf files on 8.5x11 or 11x17. The higher resolution will give you the extra detail you need. You can follow this model to increase your resolution further if necessary. These plot settings actually spool directly to our ps2pdf converter and then open the final pdf in acroread without any intermediate steps.

    As for the hierarchy, I think bookmarks are you best approach. Take a look at the documentation for pdfmark. You should be able to write some Skill to build a bookmark file to use with your ps to pdf distiller.

    Derek

    PDF_6000dpi|Large Postscript: \
            :type=postscript2: \
            :spool=ps2pdf13 - > /tmp/plot_${LOGNAME}.pdf ; (acroread /tmp/plot_${LOGNAME}.pdf &): \
            :resolution#6000: \
            :maximumPages#30: \
            :paperSize="A" 48000 63000 1500 1500:
    PDF_3000dpi|Medium Postscript: \
            :type=postscript2: \
            :spool=ps2pdf13 - > /tmp/plot_${LOGNAME}.pdf ; (acroread /tmp/plot_${LOGNAME}.pdf &): \
            :resolution#3000: \
            :maximumPages#30: \
            :paperSize="A" 24000 31500 750 750:
    PDF_1000dpi|Small Postscript: \
            :type=postscript2: \
            :spool=ps2pdf13 - > /tmp/plot_${LOGNAME}.pdf ; (acroread /tmp/plot_${LOGNAME}.pdf &): \
            :resolution#1000: \
            :maximumPages#30: \
            :paperSize="A" 8000 10500 250 250:
    PDF_6000dpiB|Large Postscript: \
            :type=postscript2: \
            :spool="ps2pdf13 -sPAPERSIZE=11x17 - > /tmp/plot_B.pdf ; (acroread /tmp/plot_B.pdf &)": \
            :resolution#6000: \
            :maximumPages#30: \
            :paperSize="B" 63000 99000 1500 1500:
    PDF_3000dpiB|Medium Postscript: \
            :type=postscript2: \
            :spool="ps2pdf13 -sPAPERSIZE=11x17 - > /tmp/plot_B.pdf ; (acroread /tmp/plot_B.pdf &)": \
            :resolution#3000: \
            :maximumPages#30: \
            :paperSize="B" 31500 49500 750 750:
    PDF_1000dpiB|Small Postscript: \
            :type=postscript2: \
            :spool="ps2pdf13 -sPAPERSIZE=11x17 - > /tmp/plot_B.pdf ; (acroread /tmp/plot_B.pdf &)": \
            :resolution#1000: \
            :maximumPages#30: \
            :paperSize="B" 10500 16500 250 250:

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Reply
  • dmay
    dmay over 15 years ago

    Here are some sample cdsplotinit settings that create various resolutions for pdf files on 8.5x11 or 11x17. The higher resolution will give you the extra detail you need. You can follow this model to increase your resolution further if necessary. These plot settings actually spool directly to our ps2pdf converter and then open the final pdf in acroread without any intermediate steps.

    As for the hierarchy, I think bookmarks are you best approach. Take a look at the documentation for pdfmark. You should be able to write some Skill to build a bookmark file to use with your ps to pdf distiller.

    Derek

    PDF_6000dpi|Large Postscript: \
            :type=postscript2: \
            :spool=ps2pdf13 - > /tmp/plot_${LOGNAME}.pdf ; (acroread /tmp/plot_${LOGNAME}.pdf &): \
            :resolution#6000: \
            :maximumPages#30: \
            :paperSize="A" 48000 63000 1500 1500:
    PDF_3000dpi|Medium Postscript: \
            :type=postscript2: \
            :spool=ps2pdf13 - > /tmp/plot_${LOGNAME}.pdf ; (acroread /tmp/plot_${LOGNAME}.pdf &): \
            :resolution#3000: \
            :maximumPages#30: \
            :paperSize="A" 24000 31500 750 750:
    PDF_1000dpi|Small Postscript: \
            :type=postscript2: \
            :spool=ps2pdf13 - > /tmp/plot_${LOGNAME}.pdf ; (acroread /tmp/plot_${LOGNAME}.pdf &): \
            :resolution#1000: \
            :maximumPages#30: \
            :paperSize="A" 8000 10500 250 250:
    PDF_6000dpiB|Large Postscript: \
            :type=postscript2: \
            :spool="ps2pdf13 -sPAPERSIZE=11x17 - > /tmp/plot_B.pdf ; (acroread /tmp/plot_B.pdf &)": \
            :resolution#6000: \
            :maximumPages#30: \
            :paperSize="B" 63000 99000 1500 1500:
    PDF_3000dpiB|Medium Postscript: \
            :type=postscript2: \
            :spool="ps2pdf13 -sPAPERSIZE=11x17 - > /tmp/plot_B.pdf ; (acroread /tmp/plot_B.pdf &)": \
            :resolution#3000: \
            :maximumPages#30: \
            :paperSize="B" 31500 49500 750 750:
    PDF_1000dpiB|Small Postscript: \
            :type=postscript2: \
            :spool="ps2pdf13 -sPAPERSIZE=11x17 - > /tmp/plot_B.pdf ; (acroread /tmp/plot_B.pdf &)": \
            :resolution#1000: \
            :maximumPages#30: \
            :paperSize="B" 10500 16500 250 250:

    • Cancel
    • Vote Up 0 Vote Down
    • Cancel
Children
No Data

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