cancel
Showing results for 
Search instead for 
Did you mean: 

Archives Discussions

stefan_w
Journeyman III

APP Profiler in a Makefile Project?

I tried to use the APP Profiler in a Visual Studio 2008 Makefile Project. However it only responds "AMD APP Profiler Failed to profile.". The Profiler works fine on the SDK samples.

0 Likes
2 Replies
himanshu_gautam
Grandmaster

stefan_w,

Please post your system configuration:CPU<GPU<SDK<DRIVER<OS.

Also explain your problem in more detail.  

0 Likes
lbin
Staff

Hi Stefan_w, Currently our profiler doesn't support Visual Studio makefile project. But you can profile your application in command line and view the result in Visual Studio.

Examples
•             An example to collect performance counters:
                sprofile -o "/path/to/output.csv" -w "/path/to/app/working/directory" "/path/to/app.exe" "--device gpu"
•             An example to collect API trace:
                sprofile -o "/path/to/output.atp" -t -w "/path/to/app/working/directory" "/path/to/app.exe" "--device gpu"
•             An example to collect API trace with summary pages:
                sprofile -o "/path/to/output.atp" -t -T -w "/path/to/app/working/directory" "/path/to/app.exe" "--device gpu"
•             An example to generate summary pages from .atp file:
                sprofile -a "/path/to/output.atp" -T

Thank you

0 Likes