Questions tagged [profiler]

A profiler is a programming tool used to track and analyse the performance of a software program.

A profiler is a programming tool to track and analyse the performance of a software program. Profilers can focus on different aspects, for example:

  • memory usage
  • cpu usage
  • the frequency and duration of function/method calls
  • resource usage

Most profilers use a process called instrumentation (adding measuring code) to gather data, but some profilers can also use sampling (polling data at specific intervals).

1716 questions
0
votes
1 answer

Using Visual Studio 2010 Profiler for ASP.NET web pages. Anything helpful besides 'tier interactions'? code coverage?

Does anyone out there run the profiler on thier ASP.NET web page when running locally. I guess it is like a poor mans load tester. The tier interactions seems to be the only real usesful part since that show all the queries made and that is normally…
punkouter
  • 5,170
  • 15
  • 71
  • 116
0
votes
2 answers

How to profile optimized c code lines

Why can't I get line by line profiling data for optimized code ? Why am I getting jumps in the lines ? I know that there are compiler optimizations but every assembly line has a c source matched to it. I know I can get profiling of functions, but I…
yehudahs
  • 2,488
  • 8
  • 34
  • 54
0
votes
2 answers

AQtime not working properly on windows vista / 7 with multi-core processor

I'm tryin to run AQtime (v5.45), as preformance profiler under windows vista or 7 on my multi-core laptop but it seems that the program is not working correctly, he does not show any routine and seems to throw an exception when trying to call…
0
votes
0 answers

Go tool pprof list command gives 'Syntax error: "(" unexpected'

I've got a cpu profile file that I've been examining for a bottleneck in my code and using the commands like top10 works fine. However, when I want to look at the source code listing by typing list Remove Where Remove is the function I want to…
Chilly
  • 578
  • 4
  • 11
0
votes
1 answer

I think my program is bottlenecked by file I/O, and I need a better solution

My program interacts with an API, performs calculations, and builds a Gui using information, some of which is stored in local files (to preserve information between logins). When using cProfile to profile my code, I get the following…
Tyler Cheek
  • 327
  • 2
  • 14
0
votes
0 answers

Measurement of energy consumption using profiler in windows 10 mobile device

I'm trying to profile energy consumption in a real Windows 10 mobile device with ARM-class processor. However, to do so, we need to disconnect from USB cable, because a direct feeding by means of USB seems to distort measurements, in addition…
0
votes
1 answer

Xamarin Profiler - Memory allocated

I want to optimize my Xamarin.Forms app, so I am starting to use Xamarin Profiler, and I can see that the initial memory allocated in my Android app is always around 50MB. The allocated memory is 50MB when the app starts, and it starts to increase…
Fran_gg7
  • 717
  • 3
  • 13
  • 30
0
votes
2 answers

Tomcat spiking and consuming all available CPU

Tomcat (8.0.14-1+deb8u1) in production server suddenly hogs all CPU, what could be done to diagnose the cause? I'm aware that a profiler might come in handy, but not in a production environment, any ideas? Additional information: "top" command…
gvasquez
  • 1,919
  • 5
  • 27
  • 41
0
votes
0 answers

Profile OpenMP Code With Intel VTune XE

I have a really weird bug in my code where when running in the Intel XE profiler, it crashes out before the OpenMP section. If I run the command: ./sphere_benchmark -i ../sphere_team6_dealmesh.prm -m 2 -h 1 -p 3 top shows 100% CPU usage in a small…
0
votes
1 answer

Visualization of the Garbage Collector

In the code below, there will be one object s2 that is eligible for garbage collection. Is there any way to visualize the work of Garbage Collector in Netbeans 8.0? Profile/Debug/Watch/Plugin? class Student { String name; int age; …
0
votes
1 answer

Generate profiling information as part of a .net assembly

Is there a tool that can help me profile .net applications by generating a file and then opening the file with a viewer. I want to be able to deploy my application and it will constantly generate profiling information, then when my issue reoccurs I…
jacob
  • 1,397
  • 1
  • 26
  • 53
0
votes
0 answers

Do I have a memory leak, an inaccurate memory profiler or both?

I have implemented a linked list. To test this list for memory leaks i have also written a test case: #include #include #include typedef struct node { struct node* NextNode; struct node* PreviousNode; …
Jens
  • 2,592
  • 2
  • 21
  • 41
0
votes
2 answers

Why does the batches count increase when I access the renderer?

I have 81 game objects in my scene. When I play the stats are healthy with 3 batches running. But when I access the renderer in the script the batches count increases for every object. After I accessed all the objects' renderer the situation gets…
0
votes
1 answer

cProfile streamline -- python

I'm trying to profile a python script with several functions in it. Here is the code I'm using to profile the program: cProfile.run('loadBMPImage(sys.argv[1])') cProfile.run('parseFilterCmdArgs(sys.argv)') cProfile.run('doConvolution( img_data,…
Kommander Kitten
  • 283
  • 2
  • 7
  • 16
0
votes
1 answer

How to use .. QNX Momentics Application Profiler?

I'd like to profile my (multi-threaded) application in terms of timing. Certain threads are supposed to be re-activated frequently, i.e. a thread executes its main job once every fixed time interval. In other words, there's a fixed time slice in…
Jim McAdams
  • 1,034
  • 1
  • 14
  • 30
1 2 3
99
100