programming tool to track and analyse the performance of a software program
0
votes
0answers
13 views
Why Valgrind is killed after start?
I cross-compiled the Valgrind on SunOS platform to Linux x64 platform using following commands:
./configure CC=/vob/windriver-m2/sysroots/toolchain/gcc CXX=/vob/windriver-
...
0
votes
0answers
7 views
No 'Profile Test' context menu in Visual Studio 2012 Professional?
I have installed Visual Studio 2012 Professional, then update 2, and then update 3.
In the unit test explorer, I still do not see a 'Profile Test' kind of context menu when right clicking on a test. ...
0
votes
1answer
47 views
Helper method to load images abandoning memory in iOS - how do I avoid this?
I have a helper class I created to make it easy to load images throughout my app - it get's used ALOT:
@implementation Helpers
+(UIImage *) getThumbnailImageIfExists:(NSString *)ItemSKU ...
5
votes
2answers
147 views
Why is my C# program faster in a profiler?
I have a relatively large system (~25000 lines so far) for monitoring radio-related devices. It shows graphs and such using latest version of ZedGraph.
The program is coded using C# on VS2010 with ...
1
vote
2answers
50 views
How to see time taken by each method in Java program during execution
I am trying to find the time taken by each method that my Java program calls, while executing. I do not want to litter my code with System.currentTimeMillis(). Maybe, something like a profiler or an ...
0
votes
1answer
30 views
Cuda profiler says that my two kernels are expensive, however their execution time seems to be small
I use two kernels, let's call them A an B.
I run the CUDA profiler and this is what it returned:
The first kernel has 44% overhead while the second 20%.
However, if I decide to find out the ...
2
votes
0answers
32 views
Fortran extension to Python via f2py: How to profile?
I'm using an extension to Python (2.7.2) written in Fortran (gfortran 4.4.7) compiled via f2py (Ver. 2).
I can profile the Python part with cProfile, but the result does not give any information ...
0
votes
2answers
25 views
Which factors affect the speed of cpu tracing?
When I use YJP to do cpu-tracing profile on our own product, it is really slow.
The product runs in a 16 core machine with 8GB heap, and I use grinder to run a small load test (e.g. 10 grinder ...
1
vote
1answer
27 views
Profiling for cells instead of functions
I have a function that in turn calls many more functions. I want to use the profiler to identify what parts of the code is most time demanding.
Is it possible to get the profile summary sorted by ...
0
votes
3answers
42 views
Performance/Memory profiling for a C#/XAML App [duplicate]
I am currently working on a C#/XAML application, I need to do performance profiling to figure out XAML bottlenecks. Any good profilers/tools available?
0
votes
3answers
30 views
How to use VisualVM to get the time each function costs
VisualVM is a nice but a little complicated tool for me.
I wrote a class with many functions (in Eclipse). How can I get the information of how many time each function calls and the time they cost ...
0
votes
1answer
40 views
Eclipse CUDA PROFILER PLUGIN development [closed]
I am little bit new in field of eclipse and I am trying to write a plugin for eclipse
which can provide a main menu with one sub menu NVIDIA VISUAL PROFILER.After clicking
on which it should profile ...
0
votes
0answers
22 views
Why Visual Studio Ultimate Instrumentation C# profiling doesn't include called functions within same class?
I'm using the Visual Studio 2010 profiler to try and find what functions within a certain project are taking up the most time. These functions are within a different project than the main application ...
2
votes
1answer
32 views
Using ServiceStack Mini Profiler in self-hosted console application
Is it possible to use ServiceStack Mini Profiler in self-hosted console application? If it is, where should I put profiler enable/disable code? In ASP.NET hosted ServiceStack it's usually in ...
0
votes
0answers
26 views
Alternative ways to profile or audit SQL queries [closed]
I'm working with a reseller of a POS application that uses a SQL database. While I have access to make 3rd party enhancements (or, just as often, try to identify bugs in the software), the developers ...
0
votes
0answers
14 views
jinsight profiler for windows [closed]
I have read about jinsight [java profiler] in some of the IBM alpha works and articles, but I can't seem to find it's project or downloads page.
I found the article in the IBM developer center for ...
0
votes
1answer
51 views
Nvprof, metrics, the elapsed_cycles variable
I'm having some issues with the CUDA nvprof profiler. Some of the metrics on the site are named differently than in the profiler, and the variables don't seem to be explained anywhere on the site, or ...
0
votes
0answers
38 views
How to solve memory leakage in java using Netbeans Profiler?
I am following these LINK1 and LINK2 to find the memory leaks of my Java application. The details of application is as following
Java
Struts2
Spring-Security
Maven
My application often runs into ...
0
votes
1answer
18 views
Netbeans profiler retained memory calculated wrong?
http://i.imgur.com/q58EQd2.png
That's a screenshot from the profiler. The last column is supposed to be Retained size.
It says that "scores" is a ConcurrentHashMap with retained size 72.
It has a ...
0
votes
1answer
44 views
CUDA Perfomance Profiling with Nvidia NSight in VS2010 - .nvreport report file
I did a trace of application
In this report file:
1.
When I select "CUDA -> CUDA Summary" in the drop down
Under the Runtime API calls item in the table
% Time - 80.66
Launches
% Device Time ...
0
votes
0answers
43 views
Free performance profiler for C# [duplicate]
I am currently learning C# and trying to find a free line by line performance profiler like pythons line_profiler:
(http://pythonhosted.org/line_profiler/).
Does one exist or is there anything built ...
0
votes
0answers
13 views
SciTect Software: Can we know whether any of the local variable is initialized or not?
Recently there was an issue caused due to local pointer variable not initialized but deleted at the end of function due to garbage value assigned to the variable which caused crash of the application.
...
0
votes
2answers
66 views
Unable to view Visual GC in Visual VM
I am using Java VisualVM on my local windows machine to monitor my remote server(Linux).
I am able to get all stats in Bisual VM except "Visual GC". It shows "Not Supported for this JVM". I have ...
-1
votes
0answers
15 views
Flashdevelop profiler shows memory drop soon after start of swf [closed]
I've noticed that when I start this particular project, according to the default profiler, it starts out at about 15.5 Kb memory comsumption and then after a couple seconds drops down to 11.5 Kb and ...
2
votes
1answer
54 views
ARM Cycle-Accurate Simulator
Is there a free and cycle-accurate ARM (Cortex A9) simulator out there?
I think ARM IDE is providing some sort of profiler but first I am not sure if it provides a commanline interface and secondly ...
0
votes
0answers
43 views
Magento mage takes too long
I am using magento installed with nginx, Php5-fpm. Initially it was working fine. The page load time was good. But after some time as i added some products and installed some extensions, it has become ...
-3
votes
0answers
50 views
Has anyone used the Profile Guided Optimization (PGO) feature for C Visual Studio? [closed]
I am trying to find out if there are folks out there using PGO in their products today ?
Any input you can provide will be very helpful.
Thank you.
0
votes
0answers
41 views
Call Tree Data Missing From Profiling Report
I am attempting to use the Visual Studio Performance Profiler to profile a process I have running. I am using the "Sampling" collection type, and am attaching to the process after it has already ...
1
vote
1answer
42 views
Profiler Program for MySQL like in MSSQL
is there a Profiler like in T-SQL namely SQL Server to trace queries for MYSQL.
I am using Windows, XAMPP MySQL. I have this PHP Command that is so simple yet it does not update properly. I want to ...
0
votes
1answer
83 views
Best way to make loop profiling
I must change a C/C++ program with a lot of loop inside one function. I msut add cuda functions.
Before i start making changes, I wanted to take the time to all loops found. But i did't find any ...
1
vote
2answers
81 views
python loop increases its memory usage rapidly
I have a python script that runs a loop. Within this loop, the function DoDebugInfo is called, once per loop iteration. This function basically prints some pictures to the hard disk using matplotlib, ...
1
vote
2answers
59 views
How do you get the Python profiler to work?
I'm trying to follow the instructions here:
http://docs.python.org/2/library/profile.html#module-cProfile
Specifically, this part:
import cProfile, pstats, io
pr = cProfile.Profile()
pr.enable()
... ...
0
votes
0answers
17 views
nvidia visual profiling failed
I compile the .cu file with the option -lineinfo in linux
and when I add the execution file in visual profiler this error occur:
======== Error: application being profiled returned a non-zero return ...
0
votes
0answers
71 views
Advantages of ANTS performance profiler over the Visual Studio 2010 Ultimate profiler [closed]
Are there any advantages of the ANTS performance profiler over the Visual Studio 2010 Ultimate profiler? If there are, what are they, specifically? From my limited testing, I can't see anything ...
0
votes
1answer
197 views
is there a free/open source profiler for intellij idea?
I know that Netbeans has something of an "integrated" profiler, for instance you can run unit tests and use it to see what is slowing them down. Does IntelliJ IDEA have any similar option, anybody ...
0
votes
0answers
16 views
Jboss Profiler & JDK 1.5
Are there any good Jboss profilers that work with JDK 1.5.0_22? I'm using Windows Server 2008R2. I'm having serious CPU problems and I can't pin down why. Thanks!
3
votes
1answer
85 views
How do I trace database writes in SQL Server?
I'm using SQL Server 2008 R2, trying to reverse-engineer an opaque application and duplicate some of its operations, so that I can automate some massive data loads.
I figured it should be easy to do ...
2
votes
1answer
61 views
Is there a .Net C# profiler that can report separate statistics for different typed execution of a generic method?
Say I have a simple program:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace ProfilerTesting
{
class Program
{
static void ...
3
votes
1answer
45 views
Why can't I deauthorize Rack-mini-profiler for non admin users
I am trying to install Rack-mini-profiler on my ROR application.
I installed the gem and the profiler works great in development but I can't deauthorize specific requests for non admin users.
I placed ...
0
votes
2answers
105 views
SQL Server Profiler suddenly says Encrypted Text
Recently I noticed that a stored proc we are trying to profile failed to appear in the profiling output.
After adding in SP:StmtStarting and SP:StmtCompleted events, I noticed the TextData reported ...
0
votes
0answers
23 views
Disable profiler plugin
I have integrated the grails miniprofiler plugin in my application and it is working fine. Now I want to disable the profiler plugin using
grails.profiler.disable = true
But I am getting following ...
0
votes
0answers
19 views
Executing older version in XCode Profiler
When I try to run the XCode Profiler (e.g. Time Profiler), it runs a different (old) version of the current code. I have tried to clean, but it seems the profiler it is still executing and older ...
0
votes
1answer
41 views
PHP profiler that outputs to HTML file
I would like to know if there is a profiler out there that will output the profile of running segments of PHP to a separate HTML (or other reader friendly type of file) file that resides on the ...
1
vote
0answers
16 views
Xdebug profiler and storing request data
I'm trying to use the profiler feature of the xdebug in order to find the bottlenecks of my PHP code. I've managed to setup the xdebugger's profiler and everything. Most importantly, I have discovered ...
1
vote
1answer
73 views
Easy Lua profiling
I just started with Lua as part of a school assignment. I'd like to know if there's an easy way to implement profiling for Lua? I need something that displays allocated memory, variables in use ...
1
vote
2answers
57 views
Get time of execution of a block of code in Python 2.7
I would like to measure the time elapsed to evaluate a block of code in a Python program,
possibly separating between user cpu time, system cpu time and elapsed time.
I know the timeit module, but I ...
0
votes
0answers
7 views
Allocated Objects in Netbean Profiler
I need to clearly understand what Allocated Objects means in the NetBean profiler, i have read the netbean online guide and as i have understand, allocated objects is the number of objects supervised ...
1
vote
0answers
33 views
iOS Time Profiler # of Methods Execution
I have been trying to time profile an application. Once done, I search for a symbol or an function. If the symbol is called only 2 times, I can see it in a stack trace, somewhere down in the tree ...
1
vote
1answer
22 views
how to run ruby profiler when my script takes CLI arguments
here's how i run my script:
ruby script.rb Arg1 [optional-Arg2]
how can I run the ruby profiler and send the output to a file?
I've tried this:
ruby -r profile script.rb arg1 > out.txt
and ...
0
votes
0answers
31 views
does premain class of javaagent work for Web application deployed in tomcat
i'm learning about javaagent and i created a simple profiler
http://www.javabeat.net/2012/06/introduction-to-java-agents/
I profiled a java application and it works fine. can i use this profiler to ...
