active questions tagged benchmarking - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T22:30:05Zhttp://stackoverflow.com/feeds/tag/benchmarkinghttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1837080/as2-benchmarking0As2 BenchmarkingJordan2009-12-03T01:25:13Z2009-12-17T04:03:44Z
<p>I've been looking for a took or a method of benchmarking as2 code specifically individual functions. I've looked at Grant Skinners Performance Test which is for as3 so it does me no good. Does anyone know of an as2 version or a good way to time functions? </p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1912663/ruby-on-rails-question-how-can-i-measure-response-time-from-when-request-first0Ruby on Rails question - how can I measure response time from when request first hits app?? (e.g. using 'benchmark') Greg2009-12-16T06:14:44Z2009-12-16T07:15:41Z
<p>Hi,</p>
<p>Background - I'm serving files (text, images) to a browser via my Rails application as the user needs to be authenticated too. The files are on file system, however references are in the database, as I'm using PAPERCLIP. Using AUTHLOGIC for authentication. I'm finding the response times are quite bad, as each request for HTML/image etc have to go through the Rails layers I guess of AUTHLOGIC, PAPERCLIP then stream back. </p>
<p><strong>Q1 - How can I get benchmark times that start right from the first point the HTTP request hits the rails app, through to when it's ready to start streaming back the request (i.e. to avoid network traffic variations)?</strong> </p>
<p>I'm using "benchmark" in my controller however I'm pretty sure I'm missing other delays like: authentication via AuthLogic, etc... For example I'm roughly doing</p>
<pre><code> def find
self.class.benchmark("BENCHMARK REPORT") do
search_path = params[:path] * "/"
webfile = Webfile.find_by_path( search_path )
if webfile
send_file webfile.file.path , :type => webfile.file_content_type, :disposition => 'inline'
else
render :text => "COULD NOT FIND YOUR FILE WITH PATH = #{params [:path]}"
end
end
end
</code></pre>
<p><strong>Q2 - Given I want users to authenticate for HTML & associated files (CSS, images) then page needs, is there any obvious way to get an order of magnitude improvement?</strong> I guess I could save in session state the list of children files a HTML page needs & get its file location path, until the subsequent requests come, and that would some a database lookup (at the expense of using session state)?</p>
<p>thanks</p>
http://stackoverflow.com/questions/1902944/benchmarks-for-various-google-app-engine-datastore-operations0Benchmarks for various Google App Engine Datastore operations?Peter2009-12-14T19:28:05Z2009-12-15T17:18:33Z
<p>A recent <a href="http://stackoverflow.com/questions/1892325/simple-db-query-on-google-app-engine-taking-a-lot-of-cpu-time">question</a> regarding the datastore and how long a query should run got me thinking - has anyone compiled a nice set of benchmarks that would demonstrate what "typical" results should be for datastore performance? I know that every entity kind will have different performance characteristics, but it would be great to be able to see times for a few representative types of entities, so we know if we're doing something wrong (for example, if we see that our query is taking much longer than the benchmark, we might know to check for non lazily fetched relationships, or to verify that we are using the api properly to batch fetch things.)</p>
http://stackoverflow.com/questions/1908048/vmware-vs-normal-server0vmware vs normal server [closed]zachary2009-12-15T15:03:44Z2009-12-15T15:53:10Z
<p>what is a good benchmark for me to run on my old server and my new vmware server? I want to verify that I have not lost any performance between the two</p>
http://stackoverflow.com/questions/1799692/has-anyone-done-a-performance-analysis-of-boostasio2Has anyone done a performance analysis of boost::asio ?Hassan Syed2009-11-25T20:19:05Z2009-12-14T15:12:47Z
<p>I require socket-like local IPC. I used named pipes and overlapped IO on windows and I want to rewrite the application to boost::ASIO so that it can use UNIX domain sockets as well.</p>
<p>I've recently reviewed parts of the libevent library and I know it only supports socket() and select() for windows in the 1.4 version. As overlapped IO is very efficient leaving it out is obviously an unacceptable trait which is being adressed in version 2 (which is in alpha). Another example of sub-optimal implementation is the use of red-black trees vs. prio-queues for the timeout logic which was <a href="http://libev.schmorp.de/bench.html" rel="nofollow">adressed</a> somewhere along the line.</p>
<p>Does anyone have any opinions on the performance characteristics of boost vs libevent/libev. Does it have any glaring undesireable traits on certain platforms ? My aim for this question is that I do not want to pidgeon-hole the ASIO library unless I absolutely must. I want to know if boost::asio uses the most optimal OS primitives in the most optimal way.</p>
http://stackoverflow.com/questions/1783991/determining-cache-misses-for-various-filesystems3Determining cache misses for various filesystemsvrish882009-11-23T15:47:40Z2009-12-09T10:41:07Z
<p>Hello, I've got a project for school where I have to find out how many cache misses a filesystem will have under heavy and light loads and on a multiple processor machine. After discussing this with my professor, I came up with a basic plan of execution:</p>
<ol>
<li>Create a program which will bog down the filesystem and fill up the buffer cache.</li>
<li>Use a system benchmarking tool to record the number of cache misses.</li>
<li>Rinse and repeat with a new conditions.</li>
</ol>
<p>But being new to operating system design, I am unsure of how to proceed. So here are some points where I need some <a href="http://www.youtube.com/watch?v=Ra9rFfXFkK8" rel="nofollow">help</a>:</p>
<ol>
<li>What actions would an ideal program perform to fill up the buffer cache? Currently, the program that I've written reads and writes to several different files, x amount of times.</li>
<li>What tools are there that record the number of cache misses? I have looked into oprofile but I don't think it monitors the filesystem's buffer cache. But I have found this <a href="http://www.raid.com/benchmarks.html" rel="nofollow">list</a> which looks promising.</li>
<li>Will other running processes affect these benchmarks?</li>
</ol>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1861294/how-to-calculate-execution-time-of-a-code-snippet-in-c4How to Calculate Execution Time of a Code Snippet in C++Ahmet Alp Balkan2009-12-07T16:56:07Z2009-12-08T20:10:22Z
<p>Hi folks.</p>
<p>I should compute execution time of a C++ code snippet in seconds. It must be working either on Windows or Unix machines</p>
<p>I use code the following code to do this. (import before)</p>
<p><code>
clock_t startTime = clock();<br />
// some code here<br />
// to compute its execution duration in runtime<br />
cout << double( clock() - startTime ) / (double)CLOCKS_PER_SEC<< " seconds." << endl;
</code></p>
<p>However for small inputs or short statements such as a = a + 1, I get "0 seconds" result. I think it must be something like 0.0000001 seconds or something like that.</p>
<p>I remember that System.nanoTime() in Java works pretty well in this case. However I can't get same exact functionality from clock() function of C++.</p>
<p>Do you have a solution?</p>
http://stackoverflow.com/questions/1855496/benchmarking-a-asp-net-website-can-i-use-jmeter0benchmarking a asp.net website, can I use jmeter?mrblah2009-12-06T14:13:05Z2009-12-06T14:38:07Z
<p>just looking at jmeter, from what I can I see it is a desktop application, so is it safe to say I can use it to benchmark a windows server running asp.net?</p>
<p>any other recommended tools?</p>
http://stackoverflow.com/questions/1833796/how-to-benchmark-php-mysql-site2How to benchmark php/mysql siterazass2009-12-02T15:52:35Z2009-12-03T01:18:00Z
<p>I would like to know how to benchmark a php/mysql site.</p>
<p>We have a web app almost completed and ready to go live, we know how many people are going to be using it in a years time but have absolutely no idea how much bandwidth the average user takes, to how much time they burn up on the database etc. We need to determine the correct servers to purchase.</p>
<p>Is there something server side linux that can monitor these statistics per user? So that we can then take this data and extrapolate it?</p>
<p>If I am going about this completely wrong please let me know but I believe that this is a frequent activity for new web apps. </p>
<p>EDIT: I may have asked for the incorrect information. We can see how long the database queries take and how long it takes to load the page but have no idea what load is placed on the server. The question I am asking is can we handle 100 users at once on average...1000? What type of server requirements are needed to hit 1M users. Etc.</p>
<p>Thanks for your help.</p>
http://stackoverflow.com/questions/1818699/timing-in-javascript1Timing in JavaScriptAustin Kelley Way2009-11-30T09:15:39Z2009-11-30T13:24:11Z
<p>I am speed testing some JavaScript programs by creating a Date object, and using it to get the time in milliseconds before and after the real work of the function. I made the body a simple adding for loop, and then the end is subtracting the old ms from the new ms and printing that. However, everything finishes in 0 milliseconds... which makes sense as the time when I check it with a write is the same before and after the work. Am I doing it right, and JavaScript (in Chrome) is lightning fast, or is there some behind the scenes stuff that is messing up my variables.</p>
http://stackoverflow.com/questions/1797933/anyone-have-benchmarks-speed-tests-comparing-classic-asp-vs-asp-net-2-0-or-3-52Anyone have benchmarks / speed tests comparing Classic ASP vs ASP.NET 2.0 or 3.5?will2009-11-25T16:00:56Z2009-11-25T19:28:03Z
<p>I'm thinking about using ASP.NET in a new project I'm starting and I'm wondering if it's faster than classic ASP. I've been using classic for years, and never ran into any problems, but I really want to pick the fastest out of the three.</p>
<p>Thanks for your help!</p>
http://stackoverflow.com/questions/1787717/c-which-is-faster-do-while-or-for-3C# which is faster do/while or for?Zach2009-11-24T04:08:49Z2009-11-24T04:22:51Z
<p>I have a C# .NET 2.0 script and I want to know why the following code would be faster than a do while loop of the same kind. </p>
<pre><code>private double getStop(double avgPrice, bool longTrading)
{
double stopS = 0.0;
double stopL = 0.0;
for (int i = 0; i < 13; i++)
{
if (i == 0 || i == 12)
{
stopS = 0.0;
stopL = 0.0;
}
else
{
if ((lines[i] - ((lines[i] - lines[i - 1]) / 2)) < avgPrice && avgPrice < (lines[i + 1] - ((lines[i + 1] - lines[i]) / 2)))
{
if (avgPrice < lines[i])
{
stopL = (lines[i] - ((lines[i] - lines[i - 1]) / 2));
stopS = lines[i];
} else {
stopL = lines[i];
stopS = (lines[i + 1] - ((lines[i + 1] - lines[i]) / 2));
}
}
}
}
if (longTrading)
{
return stopL;
} else {
return stopS;
}
}
</code></pre>
<p>Also, would it be faster just to explicitly state each if statement instead of doing them inside of a for loop? </p>
<p>Being that this was answered so fast, why would this run far slower than the above code?</p>
<pre><code>private double getStop(double avgPrice, bool longTrading)
{
double stopS = 0.0;
double stopL = 0.0;
for (int i = 0; i < 13; i++)
{
if (i == 0 || i == 12)
{
stopS = 0.0;
stopL = 0.0;
skip = true;
}
if (!skip && (lines[i] - ((lines[i] - lines[i - 1]) / 2)) < avgPrice && avgPrice < (lines[i + 1] - ((lines[i + 1] - lines[i]) / 2)))
{
if (avgPrice < lines[i])
{
stopL = (lines[i] - ((lines[i] - lines[i - 1]) / 2));
stopS = lines[i];
} else {
stopL = lines[i];
stopS = (lines[i + 1] - ((lines[i + 1] - lines[i]) / 2));
}
}
}
skip = false;
}
if (longTrading)
{
return stopL;
} else {
return stopS;
}
}
</code></pre>
http://stackoverflow.com/questions/1783705/benchmarking-oracle-10g-on-windows-xp3Benchmarking Oracle 10G on Windows XPJon Renaut2009-11-23T15:09:53Z2009-11-23T21:41:46Z
<p>I am not a DBA. However, I work on a web application that lives entirely in an Oracle database (Yes, it uses PL/SQL procedures to write HTML to clobs and then vomits the clob at your browser. No, it wasn't my idea. Yes, I'll wait while you go cry.).</p>
<p>We're having some performance issues, and I've been assigned to find some bottlenecks and remove them. How do I go about measuring Oracle performance and finding these bottlenecks? Our unhelpful sysadmin says that Grid Control wasn't helpful, and that he had to rely on "his experience" and queries against the data dictionary and "v$" views.</p>
<p>I'd like to run some tests against my local Oracle instance and see if I can replicate the problems he found so I can make sure my changes are actually improving things. Could someone please point me in the direction of learning how to do this?</p>
http://stackoverflow.com/questions/222287/what-graphics-card-benchmark-software-do-you-recommend0What graphics card benchmark software do you recommend?Guy2008-10-21T15:25:05Z2009-11-22T22:00:52Z
<p>The graphics rendering on my development machine "feels" slow so I've just bought a graphics card to replace the on board graphics card.</p>
<p>Before I install it I want to run some software that will measure the performance of my current card so that I can compare the before and after.</p>
<p>Can you recommend something that will give me an objective measure of performance change?</p>
http://stackoverflow.com/questions/1760103/benchmarking-desktop-applications1Benchmarking Desktop ApplicationsIsrael Lopez2009-11-19T00:24:47Z2009-11-19T17:39:25Z
<p>I have the desire to benchmark a Client/Server application (GUI) written in Java, on a Windows platform. I'm doing this so I can identify where the Application platform will break when scaled to 100s of users. This is not my application, I do not have source code. </p>
<p>I know packages like selenium exist for web apps, but I haven't seen anything for a Desktop application. </p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1586740/trouble-deciphering-autobench-output0Trouble deciphering Autobench outputDave DeLong2009-10-19T02:43:20Z2009-11-16T18:48:10Z
<p>I'm trying to benchmark a simple webserver I wrote, but I'm having trouble deciphering what Autobench has outputted. I've been googling all over for help on this (even going through the autobench and httperf source code) but haven't been able to grok what's going on.</p>
<p>I ran the following benchmark on my server:</p>
<pre><code>autobench --single_host --host1 10.0.1.5 --port1 5555 --uri1 /Tests --quiet --low_rate 20 --high_rate 200 --rate_step 20 --num_call 10 --num_conn 5000 --timeout 5 --file results.csv
</code></pre>
<p>Here's my results.csv file (with some extra whitespace for readability):</p>
<pre><code>dem_req_rate,req_rate,con_rate,min_rep_rate,avg_rep_rate,max_rep_rate,stddev_rep_rate,resp_time,net_io,errors
200, 40.0, 20.0, 20.0, 20.0, 20.0, 0.0, 6.2, 15.6, 100
400, 80.0, 40.0, 40.0, 40.0, 40.0, 0.0, 6.4, 31.2, 100
600, 119.9, 60.0, 57.0, 59.9, 61.4, 0.9, 17.9, 46.8, 100.160256410256
800, 159.5, 79.9, 76.0, 79.5, 82.4, 2.1, 32.5, 62.1, 100.48231511254
1000, 155.9, 94.0, 55.8, 64.7, 75.8, 6.2, 129.4, 50.4, 151.975683890577
1200, 156.7, 112.6, 28.0, 45.5, 63.2, 11.3, 148.0, 38.9, 255.232261357836
1400, 154.7, 121.8, 22.2, 38.1, 51.6, 9.3, 175.6, 34.2, 328.299409061064
1600, 154.5, 134.7, 15.6, 28.7, 52.8, 13.3, 211.6, 27.7, 498.504486540379
1800, 143.5, 138.7, 3.2, 18.6, 41.0, 11.7, 185.1, 21.1, 768.049155145929
2000, 158.8, 159.4, 5.6, 18.0, 45.6, 14.6, 234.7, 21.6, 925.925925925926
</code></pre>
<p>I'm wondering:</p>
<p>What does <code>dem_req_rate</code> mean? What does <code>net_io</code> mean? What does <code>errors</code> mean? How does <code>errors</code> relate to <code>dem_req_rate</code>? What units are all of these in?</p>
http://stackoverflow.com/questions/1724680/go-language-benchmarks10Go language benchmarks?BipedalShark2009-11-12T19:19:46Z2009-11-14T19:14:34Z
<p>I see the claims that Go is supposed to be almost comparable in speed to C, but are there any benchmarks available yet?</p>
http://stackoverflow.com/questions/1733688/benchmarking-sse-instructions1Benchmarking SSE instructionsbanister2009-11-14T08:31:20Z2009-11-14T17:07:46Z
<p>I'm benchmarking some <a href="http://en.wikipedia.org/wiki/Streaming%5FSIMD%5FExtensions" rel="nofollow">SSE</a> code (multiplying 4 floats by 4 floats) against traditional C code doing the same thing. I think my benchmark code must be incorrect in some way because it seems to say that the non-SSE code is faster than the SSE by a factor of 2-3.</p>
<p>Can someone tell me what is wrong with the benchmarking code below? And perhaps suggest another approach that accurately shows the speeds for both the SSE and non-SSE code.</p>
<pre><code>#include <time.h>
#include <string.h>
#include <stdio.h>
#define ITERATIONS 100000
#define MULT_FLOAT4(X, Y) ({ \
asm volatile ( \
"movaps (%0), %%xmm0\n\t" \
"mulps (%1), %%xmm0\n\t" \
"movaps %%xmm0, (%1)" \
:: "r" (X), "r" (Y)); })
int main(void)
{
int i, j;
float a[4] __attribute__((aligned(16))) = { 10, 20, 30, 40 };
time_t timer, sse_time, std_time;
timer = time(NULL);
for(j = 0; j < 5000; ++j)
for(i = 0; i < ITERATIONS; ++i) {
float b[4] __attribute__((aligned(16))) = { 0.1, 0.1, 0.1, 0.1 };
MULT_FLOAT4(a, b);
}
sse_time = time(NULL) - timer;
timer = time(NULL);
for(j = 0; j < 5000; ++j)
for(i = 0; i < ITERATIONS; ++i) {
float b[4] __attribute__((aligned(16))) = { 0.1, 0.1, 0.1, 0.1 };
b[0] *= a[0];
b[1] *= a[1];
b[2] *= a[2];
b[3] *= a[3];
}
std_time = time(NULL) - timer;
printf("sse_time %d\nstd_time %d\n", sse_time, std_time);
return 0;
}
</code></pre>
http://stackoverflow.com/questions/333804/is-there-a-free-tool-to-profile-the-execution-time-of-java-methods0Is there a free tool to profile the execution time of Java methods?Manuel2008-12-02T12:24:27Z2009-11-12T15:37:06Z
<p>Hello everybody, </p>
<p>I need to know the usage by other applications, in time of execution, of java methods of an api created in my project, does someone know any free tool to know this?</p>
<p>Thank you very much.</p>
http://stackoverflow.com/questions/1542179/server-benchmarking-what-tools-to-use-with-my-real-world-test-data1Server Benchmarking: What tools to use with my real-world test datamdemmitt2009-10-09T06:49:08Z2009-11-11T20:30:22Z
<p>I want to benchmark a new server using historical HTTP-request data. I have a textfile that contains one day's worth of real historical requests to a production server. What is the best tool for sending that list of requests on the server I'm testing? The tool I use should be able to configure the following:</p>
<ol>
<li>Number of threads making the requests</li>
<li>Number of requests/second sent</li>
<li>A list of request URLs to use when making the requests.</li>
</ol>
<p>Apache Bench seems like a close fit. <strong>However</strong>, Bench does not seem to be able to take in a list of request URLs as a parameter. What would you recommend?</p>
http://stackoverflow.com/questions/1507405/c-is-this-benchmarking-class-accurate7C#: Is this benchmarking class accurate?Svish2009-10-02T01:47:39Z2009-11-07T09:49:48Z
<p>I created a simple class to benchmark some methods of mine. But is it accurate? I am kind of new to benchmarking, timing, et cetera, so thought I could ask for some feedback here. Also, if it is good, maybe somebody else can make use of it as well :)</p>
<pre><code>public sealed class Benchmark : IEnumerable<long>
{
private readonly Action subject;
private Benchmark(Action subject) { this.subject = subject; }
public static Benchmark This(Action subject)
{
return new Benchmark(subject);
}
public IEnumerator<long> GetEnumerator()
{
var watch = new Stopwatch();
while (true)
{
watch.Reset();
watch.Start();
subject();
watch.Stop();
yield return watch.ElapsedTicks;
}
}
IEnumerator IEnumerable.GetEnumerator() { return GetEnumerator(); }
}
</code></pre>
<p>You can use it like this:</p>
<pre><code>var avg = Benchmark.This(() => SomeMethod()).Take(500).Average();
</code></pre>
<p>Any feedback? Does it look to be pretty stable and accurate, or have I missed something?</p>
http://stackoverflow.com/questions/1692224/speed-of-data-access-2Speed of data access...JamesBrownIsDead2009-11-07T06:34:25Z2009-11-07T07:04:09Z
<p>Which do you think would be faster:</p>
<p>A) Reading a file 512 bytes in length on a solid state drive in a directory of 1 billion files</p>
<p>B) Selecting a 512-byte column by unique indexed key from a database table containing 1 billion records</p>
<p>EDIT:</p>
<p>Would the OS, database, or file system really make the difference? Is it that close of a race? Are SSD really that fast? Are databases really that slow?</p>
http://stackoverflow.com/questions/1158243/gpu-benchmark0GPU Benchmarkmelculetz2009-07-21T09:49:37Z2009-11-06T14:51:34Z
<p>What software for GPU benchmarking do you recommend? Also, any suggestions on how to use it?</p>
http://stackoverflow.com/questions/1666842/apache-benchmark-randomized-querystrings0Apache Benchmark - Randomized querystrings?victorhooi2009-11-03T11:50:20Z2009-11-03T12:01:21Z
<p>heya,</p>
<p>I need to benchmark a site, and was thinking of using ab (Apache Benchmark) to do it.</p>
<p>We need to hammer it quite hard, and we're interested more in how our app will cope, as opposed to the network bandwidth, hence we're doing it from localhost.</p>
<p>The other thing is, we need to pass in a random list of different query strings:</p>
<p>i.e. <a href="http://search.site.com/?q=search%5Fterm" rel="nofollow">http://search.site.com/?q=search%5Fterm</a></p>
<p>Is there any way to pass this in to ap somehow, or an alternative http benchmarker that can do that?</p>
<p>Or will we have to write a script to startup multiple instances of ab with different strings? I'd rather have it all run from the same instance of ab, if possible, rather than startup 10,000 instances of ap.</p>
<p>Cheers,
Victor</p>
http://stackoverflow.com/questions/1655251/net-benchmarking-guidelines3.NET Benchmarking GuidelinesAhmad Mageed2009-10-31T18:50:50Z2009-11-01T22:59:37Z
<p>I'm interested in learning the best practices for benchmarking in .NET. What are the guidelines for setting up a valid benchmark test? How does one determine that their test is good enough to extract meaningful data from to compare results?</p>
<p>I've searched and although there are some examples of benchmark tests, I haven't found anything as comprehensive as this question.</p>
<p>On the surface these questions might sound basic but what I'm after is a better understanding of how to approach benchmark testing beyond <em>"use the Stopwatch class and run your test X times."</em> I want to know what value of <strong>X</strong> is sufficient. In addition, what's an optimum (or minimum) number of collection items to use when benchmarking functionality that utilizes collections (ie. lists, arrays, etc.)?</p>
<p>For example, I see different values of <strong>X</strong> chosen:</p>
<ol>
<li><a href="http://blogs.msdn.com/ricom/archive/2005/08/25/456446.aspx" rel="nofollow">Rico Mariani</a>: 20 list items, loops 50 times</li>
<li>Jon Skeet
<ul>
<li><a href="http://stackoverflow.com/questions/1531702">Question link</a> - 10,000,000 items, loops 50 times</li>
<li><a href="http://msmvps.com/blogs/jon%5Fskeet/archive/2009/01/26/benchmarking-made-easy.aspx" rel="nofollow">BenchmarkHelper Demo</a> - 5 array items, loops scaled behind the
scenes for best results etc.</li>
<li><a href="http://stackoverflow.com/questions/472191/c-for-vs-foreach/472258#472258">Another question link</a> - 1,000,000 items, loops 10,000 times</li>
</ul></li>
<li>Marc Gravell
<ul>
<li><a href="http://stackoverflow.com/questions/454916/performance-of-arrays-vs-lists/454923#454923">Question link</a> - 6,000,000 items, loops 100 times</li>
<li><a href="http://stackoverflow.com/questions/1583050/performance-surprise-with-as-and-nullable-types/1583270#1583270">Another question link</a> - JIT warmup 5 times, loops 100,000,000
times</li>
</ul></li>
</ol>
<p>Given these variations, one may deduce that the number of items or number of loops alone don't matter, so long as together they're contributing to extending the period of time for which the benchmark is run. Stated differently, running it "long enough" to yield meaningful results is the desired goal. Granted, "long enough" is ambiguious.</p>
<h2>Misc. Considerations</h2>
<p>Here are some miscellaneous benchmarking considerations I've gathered, with questions attached.</p>
<ol>
<li><p><strong>IDE:</strong> run in release mode for optimized code -- is there any reason to favor the command prompt over the IDE that's not immediately apparent?</p></li>
<li><p><strong>Command prompt:</strong> compile using /o+ /debug- (enable optimizations, disable emission of debug info, respectively)</p></li>
<li><p><strong>Warming up the JIT:</strong> what is the correct way to achieve this? Is it done by running the benchmark application X times before the final run that you'll use to collect data? Or is the application run exactly once, with the warmup benchmarks (throw away trials) performed prior to actual runs? Marc did the latter (<a href="http://stackoverflow.com/questions/1583050/performance-surprise-with-as-and-nullable-types/1583270#1583270">as mentioned earlier</a>) and I believe keeping it all together is the correct approach.</p></li>
<li><p><strong>GC.Collect</strong> before each run. Necessary? Why or why not? I saw Jon Skeet do this <a href="http://stackoverflow.com/questions/1531702/findall-vs-where-extension-method/1531756#1531756">here</a> (although he doesn't always do this in other posts).</p></li>
</ol>
<h2>SQL Benchmarking:</h2>
<p>Are there any considerations and pointers when trying CRUD operations against the database? For example, would you <code>DELETE</code> a bunch of records once and time that? How would you repeat the test? Would you pause the stopwatch while rolling back using a transaction or re-inserting records, then unpause, repeating for X iterations?</p>
<p>Unlike regular collections that can be looped over 50 times, certain DB operations might be trickier to setup, due to data modification.</p>
<p><hr></p>
<p>I figured a CW would be best to allow people to address certain issues since there are multiple questions here. Feel free to address other related issues I didn't cover.</p>
<p>Thanks for reading and thanks in advance for responding! :)</p>
<p><strong>EDIT:</strong> although this should apply to any .NET language, I updated the tags for better coverage.</p>
http://stackoverflow.com/questions/1628031/gwt-application-logging-profiling-benchmarking1gwt application logging, profiling, benchmarkingantony.trupe2009-10-27T00:13:03Z2009-10-31T03:31:50Z
<p>Is there a good methodology for logging/benchmarking/profiling a gwt application to identify bottlenecks?</p>
<p>Something like a timing/logging framework or similar.</p>
http://stackoverflow.com/questions/1651845/information-on-client-interrogation-to-determine-execution-ability0Information on client interrogation to determine execution ability?Spot2009-10-30T19:27:49Z2009-10-30T19:37:26Z
<p>I am looking for information concerning a proven process to interrogate the current user's client, and perhaps benchmark a code piece, to determine how effectively the client is executing certain types of code.</p>
<p>Obviously writing code as efficiently as possibly is the constant goal. However certain features and effects tend to degrade the experience on lower end machines. With benchmark information, it could be possible to disable certain effects (fading, etc) on a user by user basis, to increase the experience of a property/app.</p>
<p>If you don't know of any information on this, do you have ideas on how it could be done?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/1622440/benchmarking-method-calls-in-c0Benchmarking method calls in C#Toms Mikoss2009-10-25T23:17:31Z2009-10-25T23:36:02Z
<p>I'm looking for a way to benchmark method calls in C#. </p>
<p>I have coded a data structure for university assignment, and just came up with a way to optimize a bit, but in a way that would add a bit of overhead in all situations, while turning a O(n) call into O(1) in some.</p>
<p>Now I want to run both versions against the test data to see if it's worth implementing the optimization. I know that in Ruby, you could wrap the code in a Benchmark block and have it output the time needed to execute the block in console - is there something like that available for C#?</p>
http://stackoverflow.com/questions/1616269/ruby-benchmark-module-meanings-of-user-system-and-real3Ruby Benchmark module: meanings of "user", "system", and "real"?Ethan2009-10-23T22:33:43Z2009-10-23T22:38:54Z
<p>Experimenting with Ruby's Benchmark module...</p>
<pre><code>>> Benchmark.bm(7) { |b| b.report('Report:') { s = '' ; 10000.times { s += 'a' } } }
user system total real
Report: 0.150000 0.010000 0.160000 ( 0.156361)
</code></pre>
<p>What are the meanings of "user", "system", and "real"?</p>
http://stackoverflow.com/questions/1593019/is-there-any-simple-way-to-benchmark-python-script0Is there any simple way to benchmark python script?noomz2009-10-20T07:40:54Z2009-10-20T12:57:34Z
<p>Usually I use shell command <code>time</code>. My purpose is to test if data is small, medium, large or very large set, how much time and memory usage will be.</p>
<p>Any tools for linux or just python to do this?</p>