Hi,
We have recently migrated to VTune Amplifier from VTune Performance Analyzer. I will be using it as hardware sampling event-based collection for Intel Xeon machine.
I am looking for equivalent command for the VTune Amplifier:
Thanks for your help!
regards,
Reshmi
Reshmi,
Sure you can use VTune Amplifier XE for events collection. Please refer to this documentation topic. General ways to run collection are described here. Example of a command line with custom event list:
$ amplxe-cl -collect-with runsa -knob event-config=CPU_CLK_UNHALTED.CORE,CPU_CLK_UNHALTED.REF,INST_RETIRED.ANY home/test/sample
Hi Kirill,
Thanks for your reply. Your command is working, but it is not exactly what I am looking for here. May be I have asked too many questions in a single post.
I am specifically interested in Hardware Event-based sampling only. I am trying to write the equivalent for the following old VTune command :
> vtl activity -d 20 -c sampling -of event.cfg -app my_app_to_sample,"any options" run
I would like to include all the events & their SAV values in a seperate config file. (It is important for the validation of a performance model I am designing.) I have referred to the current VTune Amplifier documentation & could not find anything useful.
regards,
Reshmi
Hi Reshmi:
The VTune Amplifier XE does not currently support an event configuration file like the old VTune Performance Analyzer did, but Kirill's reply will allow you to accomplish the same thing. Just put the entire command in a script and execute it to collect all events specified on the command line.
Note: you can determine the set of events available on the current system with this command: amplxe-runss -event-list
This article may be of use, as well.
Hi Mr. Anderson,
Thanks for your helpful comments. That makes sense. Now, back to my next two questions:
regards,
Reshmi
Hi Reshmi,
1. There is no VTune project to manage your results (in command line), which are saved in different result directory. You can delete them manually. Next time, you can create new one, and display result - such as, "amplxe-cl -report hotspots -r r000?hs"
2. I guess that you wanted to add program's arguments in amplxe-cl command? Simply append arguments with your application, for example:
amplxe-cl -collect -advanced-hotspots -r /tmp/2013-10-9/r000ah -- application arg1 arg2
Hi Peter, thanks so much!
For more complete information about compiler optimizations, see our Optimization Notice.