The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
48 views

How to calculate MIPs consumed by an Application

I have an application written in Qt and it is running on Pentium Dual Core processor. I would like to find out how much MIPS my application consumes so that it can run satisfactorily. I believe, this ...
1
vote
1answer
104 views

Measuring time for WPF Databinding processing

I am to evaluate several competing frameworks for WPF components which process large amounts of data (100000 entries and up). Thus, I need to time the real performance. As all our software is strictly ...
3
votes
0answers
606 views

Nodejs + phantomjs vs. pure phantomjs - page load time

I was poking around recenlty exploring nodejs and phantomjs and wrote a small code to measure the page load time. I have found that page load times differ between the phantomjs code wrapped in nodejs ...
0
votes
2answers
57 views

How to find the state of threads in iOS?

I have implemented some threading functions (I used NSInvocaionOperation) that does some background process without interfering the UI response. Everything works well and all the selectors that I ...
2
votes
0answers
47 views

Measuring response time in open rasta

What is the best way to do this? I was thinking about something like: public void Initialize(IPipeline pipelineRunner) { pipelineRunner .Notify(CaptureRequestStartTime) ...
2
votes
2answers
129 views

Measure memory used by code

I would like to make better some methods in C# or C++ or C. To measure time I can use Stopwatch class, but additionally I would like to measure memory reserved by exterminated code. Do you know any ...
0
votes
0answers
73 views

Is there a jQuery plugin to measure the page and widgets loading and init time?

I'm looking for a widget that can measure: How long it takes to load/execute every External JS file in my page How long it takes to load/execute every inline JS file in my page How long it takes to ...
-3
votes
2answers
67 views

Execution time resuable function

Is there any method to measure a code's execution time? And can I create a reusable code for this purpose of measuring time of execution?
2
votes
2answers
192 views

Finding mean with least number of iterations

I have a list of measurements with the following properties: The measurements are expensive. Fewer measurements -> better They are all positive. In fact, there is a positive lower limit and I can't ...
0
votes
2answers
46 views

Measure if IN clause will get nonperformant (general purpose) - MySql?

I have a MYSQL question: can anybody tell me a way how to measure if an IN() clause is getting nonperformance or not. So far I am having a table which holds about 5.000 rows and the IN() will check ...
0
votes
1answer
123 views

Measure apps loading time

I'm doing an iPhone (and possibly Android) travel apps' Benchmark for my final thesis. I'm going to analyse the userfriendliness, content, etc.. but I'd also like to measure the apps' pages loading ...
1
vote
1answer
106 views

HTML element on active event

I want to measure the time between mousedown event and applying css active property without using any jQuery functions (pure javascript). I found that there is onactive event but it is not supported ...
1
vote
4answers
183 views

Can't change array size over 10000 in array additions and performance issue CPU vs GPU

I'm new with OpenCL and have some problems with the array additions I use the code provided in the link below ...
0
votes
0answers
34 views

Measurements in MPI [closed]

I'm sorry if I ask the theoritical question. I'm making a project about parallel processing. Firstly, I want to use PVM as the tools, but recently I changed using MPI (MPICH2). But, I don't know what ...
0
votes
1answer
158 views

How to measure how long drawing takes in QGraphicsView

I'm trying to figure out how long it takes my QGraphicsView to redraw. I have tried the following: QElapsedTimer timer; timer.start(); complexViewTransformation(); qDebug() << ...
4
votes
1answer
317 views

Multicore and thread aware .Net stopwatch?

As we all know the stopwatch might have issues in a multi-threaded async application that will be running on all cores. On a multiprocessor computer, it does not matter which processor the thread ...
0
votes
1answer
239 views

Can I time an embedded process in GDB?

I am using (an adapted version of) gdb on Ubuntu to debug an embedded system we have connected through the USB port using gdbserver. The benchmark program in question is tested against a native ...
0
votes
2answers
390 views

Tutorial for multi core CPU usage in c++ in unix

I would like to know if someone can point me any library or tutorial to work with measurements. In a first moment, CPU usage, but latter I will need network (I've already found libcap, is this good?) ...
28
votes
3answers
3k views

What is the best macro-benchmarking tool / framework to measure a single-threaded complex algorithm in Java?

I want to make some performance measures (mainly runtime) for my Java code, a single-threaded, local, complex algorithm. (So I do not want a macro-benchmark to measure a JVM implementation.) With the ...
10
votes
3answers
1k views

how do we investigate how many times a browser is doing reflows?

Is there a web developer functionality/tool that allows us to know how many times a browser is doing reflows? basically I want to have some sort of feedback/information. I don't know how it will be, ...
5
votes
3answers
208 views

exact way to measure performance on individual methods from inside Java?

I'd like to measure the execution time of a set of unit tests to be able to automatically monitor and compare performance when changes are made. Are there any suitable performance counters that can be ...
3
votes
2answers
683 views

Page Loading time - Compare results after performance changes

I am about to make some changes in my site in the area of loading time. For example minimize the HTTP requests, minify contents and more. How can I actually measure the changes and understand what ...
12
votes
1answer
694 views

How to use Criterion to measure performance of Haskell programs?

I'm trying to measure the performance of a simple Haar DWT program using the Criterion framework. (It is erroneously slow, but I'll leave that for another question). I can't find any good ...
2
votes
2answers
466 views

How to measure performance of .Net applications

I hope with this question that we can assemble a bunch of good advices to measure performance of .Net applications. Personally, I'm in a situation where I want to test an algorithm, and I want to be ...
1
vote
1answer
210 views

What is the lowest time resolution for somewhat acurate measurements of cpu usage?

Some of the things I want to measure are very short,and I can only repeat them so many times if I don't run any of the setup/dispose code in the middle. note: on linux,reading /proc/stat
2
votes
1answer
197 views

Comparing timestamps between different machines

The environment I'm working in involves multiple machines (Linux) on a LAN processing data in a chain. I'd like to timestamp things in a way so I can see when it is received/sent by each node to later ...
0
votes
1answer
1k views

Best framework or system architecture for telemetry / SCADA system design & programming [closed]

I asked a question about a good book for this topic. It's not getting many replies, so maybe there arn't any good books (although I find that strange; I must go search Amazon for myself). In the ...
0
votes
2answers
125 views

Measuring “busyness” of the event dispatching thread

I would like to measure the "busyness" of my Event Dispatching Thread. One possible idea is to set up a background thread that does something like: while(true) { final long[] end = new long[1]; ...
2
votes
4answers
517 views

Free Profiler for execution analysis

I'm using Visual Studio 2008 Professional edition and I don't have the "Analyze" menu to profile the execution of my application. Does anyone know any good/free tool which can be used instead of the ...
1
vote
0answers
263 views

multimaps(benchmark) source code in C

I am actually seeking the multiMAPS benchmark source code written in C. It is a benchmark that measures memory bandwidth.. Did somebody heard about it?
1
vote
6answers
1k views

run an infinite loop for a while in c

I want to run an infinite loop for a while. Basically, i want to have something like this //do something while(1){ //do some work } //do some other thing but i want the running time of the loop ...
5
votes
3answers
497 views

Accurately measure elapsed wall clock time in .NET

What is the most convenient way of accurately measuring elapsed wall clock time in .NET? I'm looking for something with microsecond accuracy if possible (10^-6 seconds).
8
votes
3answers
990 views

How to measure performance of a Java application?

I have a CPU intensive multi-threaded Java application and I'm looking for ways to measure its performance at run time (useful for automation). I tried a few options System.currentTimeMillis(); ...
1
vote
5answers
168 views

Measuring programs for learning

I am taking a course on computational geometry in the fall, where we will be implementing some algorithms in C or C++ and benchmarking them. Most of the students generate a few datasets and measure ...
0
votes
4answers
486 views

Problem measuring N times the execution time of a code block

EDIT: I just found my problem after writing this long post explaining every little detail... If someone can give me a good answer on what I'm doing wrong and how can I get the execution time in ...
4
votes
4answers
2k views

Calculating CPU frequency in C with RDTSC always returns 0

The following piece of code was given to us from our instructor so we could measure some algorithms performance: #include <stdio.h> #include <unistd.h> static unsigned cyc_hi = 0, cyc_lo ...
5
votes
3answers
2k views

how to measure hibernate performance?

how to measure performance in hibernate? I want to know that how much time hibernate takes to execute a query?
2
votes
1answer
544 views

Measure time between library call and callback

Hi: In an iPhone application I use a library(C++) which asynchronously makes a callback when computation is finished. Now I want to measure the time which is spent -including the method which calls ...
0
votes
1answer
58 views

Method specific logging

Environment: JUnit 4, JDK 6 I would like to log all test names (annotated with @Test) and figure out the amount of time taken to execute each tests executed by JUnit in a standard J2SE environment. ...
1
vote
3answers
137 views

Cross Platform System Usage Metrics

Is there a cross platform C API that can be used to get system usage metrics?
11
votes
9answers
6k views

What is the best way to measure how long code takes to execute?

I'm trying to determine which approach to removing a string is the fastest. I simply get the start and end time and show the difference. But the results are so varied, e.g. as shown below the same ...
4
votes
6answers
5k views

Measuring amount of CPU time taken by a piece of code, in C on Unix/Linux

Can clock() be used as a dependable API to measure time taken by CPU to execute a snippet of code? When verified usng times() / clock(), both do not seem to measure the CPU time taken precisely. ...
3
votes
3answers
2k views

Is it possible to read the internal CPU tick counter from C#?

I have a multithreaded C# program where I need to log how many ticks each thread spends in a specific spin wait lock. I know there are methods for doing that from C or assembler, but is it possible ...
10
votes
8answers
1k views

How to measure the power consumed by a C algorithm while running on a Pentium 4 processor?

How can I measure the power consumed by a C algorithm while running on a Pentium 4 processor (and any other processor will also do)?
2
votes
4answers
3k views

Make a method to return Execution Time of another Method

I'm trying to come up with a method which will measure and return the execution time of another method. Basically something like this: public void DoSomething(Int32 aNumber) { /* Stuff happens */ } ...
4
votes
3answers
1k views

Best Practise for Stopwatch in multi processors machine?

I found a good question for measuring function performance, and the answers recommend to use Stopwatch as follows Stopwatch sw = new Stopwatch(); sw.Start(); //DoWork sw.Stop(); //take sw.Elapsed ...