Intel® Distribution for Python*
Engage in discussions with community peers related to Python* applications and core computational packages.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

ITT collection control bindings

Rollin_T_
Beginner
961 Views

Thought I would share a little package that exposes the ITT collection control API bindings in Python.  This allows you to run VTune Amplifier but just collect data you need from specific parts of the code.  Hopefully this saves someone else a little bit of time!  Available at this github repository.

import itt
itt.pause()
# ... some uninteresting code
itt.resume()
# ... some more interesting code
itt.detach()
# ... some uninteresting code again...

Comments welcome!

Rollin

0 Kudos
1 Reply
gaston-hillar
Valued Contributor I
961 Views

Rollin,

Thanks for sharing this. Cool. I'll definitely check ITT.

 

0 Kudos
Reply