- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
I just installed Beta Update 1 (build 466719) of VTune Amplifier XE 2017 on windows. I created a trivial program (below) but I can't see any Python function names in VTune. It only shows made up names such as func@0x1d001133 and no source file names. So completely useless.
I've listed several directories in the Source File locations.
The collection log complains about not having debug symbols for various DLLs and the python.exe, but says nothing about missing python source.
What's my problem?
Thanks.
import math def method_a(): method_b() def method_b(): method_c() def method_c(): for i in range(1, 100000000): s = math.sqrt(i) method_a()
Link Copied
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Have you specified the absolute path to the script, as stated here? https://software.intel.com/en-us/node/628111
If you specify a relative path to your Python script in the Application parameters field, the VTune Amplifier will properly resolve full function or method names only for the imported modules, and will not resolve the names inside the main script. Consider specifying the absolute path to the script.

- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page