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.
stefan_w,
Please post your system configuration:CPU<GPU<SDK<DRIVER<OS.
Also explain your problem in more detail.
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