Reputation: 2847
I have a C++ application and i want to measure its performance on ARM board. The board is running ubuntu.
Currently i am considering valgrind and gprof to measure the performance.
What tools/techniques should i use to measure the performance?
Upvotes: 3
Views: 656
Reputation: 28036
Here are the biggies I ran across last time I had to do this:
Manual instrumentation using the gcc hooks
void __cyg_profile_func_enter (void *, void *) __attribute__((no_instrument_function));
void __cyg_profile_func_exit (void *, void *) __attribute__((no_instrument_function));
Upvotes: 8