I am working on a linux server developing an application and profiling it using Vtune (2016). Within the network of my organization it is feasible to use the GUI version over ssh. This is often not possible on the train or airplain connection and there I have to use the command line version. This would normally not be a problem, besides that:
when I have identified a hotspot in the GUI version, say via the bottom-up pane, the panel to the right shows the callstack of the selected entry, and next to every function of the call stack the line number of the subsequent call. It is this line number that I am often interested in. However, I cannot get this line number using the command line client.
Whether I use the amplxe-cl -report hotspots or amplxe-cl -report callstacks command, I can can get the callstack, but the line numbers mentioned are not displayed right next to each call within the stack. How can I get this information using the command line version?
Thanks!