Wrapping StopWatch timing with a delegate or lambda? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T16:22:54Zhttp://stackoverflow.com/feeds/question/232848http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda48Wrapping StopWatch timing with a delegate or lambda?Jeff Atwood2008-10-24T08:39:46Z2009-05-13T01:14:09Z
<p>I'm writing code like this, doing a little quick and dirty timing:</p>
<pre><code>var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < 1000; i++)
{
b = DoStuff(s);
}
sw.Stop();
Console.WriteLine(sw.ElapsedMilliseconds);
</code></pre>
<p>Surely there's a way to call this bit of timing code as a fancy-schmancy .NET 3.0 lambda rather than (God forbid) cutting and pasting it a few times and replacing the <strong><code>DoStuff(s)</code></strong> with <strong><code>DoSomethingElse(s)</code></strong>?</p>
<p>I know it can be done as a <code>Delegate</code> but I'm wondering about the lambda way.</p>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/232852#2328525Answer by Mark Ingram for Wrapping StopWatch timing with a delegate or lambda?Mark Ingram2008-10-24T08:44:00Z2008-10-24T09:08:26Z<p>You could try writing an extension method for whatever class you're using (or any base class).</p>
<p>I would have the call look like:</p>
<pre><code>StopWatch sw = MyObject.TimedFor(1000, () => DoStuff(s));
</code></pre>
<p>Then the extension method: </p>
<pre><code>public static StopWatch TimedFor(this DependencyObject source, Int32 loops, Action action)
{
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < loops; ++i)
{
action.Invoke();
}
sw.Stop();
return sw;
}
</code></pre>
<p>Any object deriving from DependencyObject can now call TimedFor(..). The function can easily be adjusted to provide return values via ref params.</p>
<p>--</p>
<p>If you didn't want the functionality to be tied to any class / object you could do something like:</p>
<pre><code>public class Timing
{
public static StopWatch TimedFor(Action action, Int32 loops)
{
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < loops; ++i)
{
action.Invoke();
}
sw.Stop();
return sw;
}
}
</code></pre>
<p>Then you could use it like:</p>
<pre><code>StopWatch sw = Timing.TimedFor(() => DoStuff(s), 1000);
</code></pre>
<p>Failing that, this answer looks like it has some decent "generic" ability:</p>
<p><a href="http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda#232878">http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda#232878</a></p>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/232870#23287084Answer by Matt Hamilton for Wrapping StopWatch timing with a delegate or lambda?Matt Hamilton2008-10-24T08:55:21Z2008-10-25T23:10:53Z<p>How about extending the Stopwatch class?</p>
<pre><code>public static class StopwatchExtensions
{
public static long Time(this Stopwatch sw, Action action, int iterations)
{
sw.Reset();
sw.Start();
for (int i = 0; i < iterations; i++)
{
action();
}
sw.Stop();
return sw.ElapsedMilliseconds;
}
}
</code></pre>
<p>Then call it like this:</p>
<pre><code>var s = new Stopwatch();
Console.WriteLine(s.Time(() => DoStuff(), 1000));
</code></pre>
<p>You could add another overload which omits the "iterations" parameter and calls this version with some default value (like 1000).</p>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/232871#2328711Answer by Morten Christiansen for Wrapping StopWatch timing with a delegate or lambda?Morten Christiansen2008-10-24T08:55:56Z2008-10-24T08:55:56Z<p>You can overload a number of methods to cover various cases of parameters you might want to pass to the lambda:</p>
<pre><code>public static Stopwatch MeasureTime<T>(int iterations, Action<T> action, T param)
{
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < iterations; i++)
{
action.Invoke(param);
}
sw.Stop();
return sw;
}
public static Stopwatch MeasureTime<T, K>(int iterations, Action<T, K> action, T param1, K param2)
{
var sw = new Stopwatch();
sw.Start();
for (int i = 0; i < iterations; i++)
{
action.Invoke(param1, param2);
}
sw.Stop();
return sw;
}
</code></pre>
<p>Alternatively, you can use the Func delegate if they must return a value. You can also pass in an array (or more) of parameters if each iteration must use a unique value.</p>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/232879#2328794Answer by Mark S. Rasmussen for Wrapping StopWatch timing with a delegate or lambda?Mark S. Rasmussen2008-10-24T08:58:42Z2008-10-24T09:27:54Z<p>I wrote a simple CodeProfiler class some time ago that wrapped Stopwatch to easily profile a method using an Action:
<a href="http://www.improve.dk/blog/2008/04/16/profiling-code-the-easy-way" rel="nofollow">http://www.improve.dk/blog/2008/04/16/profiling-code-the-easy-way</a></p>
<p>It'll also easily allow you to profile the code multithreaded. The following example will profile the action lambda with 1-16 threads:</p>
<pre><code>using System;
namespace CodeProfiler
{
class Program
{
static void Main(string[] args)
{
Action action = () =>
{
for (int i = 0; i < 10000000; i++)
Math.Sqrt(i);
};
for(int i=1; i<=16; i++)
Console.WriteLine(i + " thread(s):\t" + CodeProfiler.ProfileAction(action, 100, i));
Console.Read();
}
}
}
</code></pre>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/232946#2329461Answer by Davy Landman for Wrapping StopWatch timing with a delegate or lambda?Davy Landman2008-10-24T09:48:09Z2008-10-24T09:48:09Z<p>I like to use the CodeTimer classes from Vance Morrison (one of the performance dudes from .NET).</p>
<p>He made a post on on his blog titled "<a href="http://blogs.msdn.com/vancem/archive/2006/09/21/765648.aspx" rel="nofollow">Measuring managed code quickly and easiliy: CodeTimers</a>".</p>
<p>It includes cool stuff such as a MultiSampleCodeTimer. It does automatic calculation of the mean and standard deviation and its also very easy to print out your results.</p>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/233519#2335192Answer by jyoung for Wrapping StopWatch timing with a delegate or lambda?jyoung2008-10-24T13:27:47Z2008-10-24T13:27:47Z<p>Assuming you just need a quick timing of one thing this is easy to use. </p>
<pre><code> public static class Test {
public static void Invoke() {
using( SingleTimer.Start )
Thread.Sleep( 200 );
Console.WriteLine( SingleTimer.Elapsed );
using( SingleTimer.Start ) {
Thread.Sleep( 300 );
}
Console.WriteLine( SingleTimer.Elapsed );
}
}
public class SingleTimer :IDisposable {
private Stopwatch stopwatch = new Stopwatch();
public static readonly SingleTimer timer = new SingleTimer();
public static SingleTimer Start {
get {
timer.stopwatch.Reset();
timer.stopwatch.Start();
return timer;
}
}
public void Stop() {
stopwatch.Stop();
}
public void Dispose() {
stopwatch.Stop();
}
public static TimeSpan Elapsed {
get { return timer.stopwatch.Elapsed; }
}
}
</code></pre>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/741630#7416300Answer by Sam Saffron for Wrapping StopWatch timing with a delegate or lambda?Sam Saffron2009-04-12T11:28:15Z2009-04-12T11:28:15Z<p>For me the extension feels a little bit more intuitive on int, you no longer need to instantiate a Stopwatch or worry about resetting it.</p>
<p>So you have: </p>
<pre><code>static class BenchmarkExtension {
public static void Times(this int times, string description, Action action) {
Stopwatch watch = new Stopwatch();
watch.Start();
for (int i = 0; i < times; i++) {
action();
}
watch.Stop();
Console.WriteLine("{0} ... Total time: {1}ms ({2} iterations)",
description,
watch.ElapsedMilliseconds,
times);
}
}
</code></pre>
<p>With the sample usage of: </p>
<pre><code>var randomStrings = Enumerable.Range(0, 10000)
.Select(_ => Guid.NewGuid().ToString())
.ToArray();
50.Times("Add 10,000 random strings to a Dictionary",
() => {
var dict = new Dictionary<string, object>();
foreach (var str in randomStrings) {
dict.Add(str, null);
}
});
50.Times("Add 10,000 random strings to a SortedList",
() => {
var list = new SortedList<string, object>();
foreach (var str in randomStrings) {
list.Add(str, null);
}
});
</code></pre>
<p>Sample output: </p>
<pre><code>Add 10,000 random strings to a Dictionary ... Total time: 144ms (50 iterations)
Add 10,000 random strings to a SortedList ... Total time: 4088ms (50 iterations)
</code></pre>
http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda/855624#8556241Answer by Mauricio Scheffer for Wrapping StopWatch timing with a delegate or lambda?Mauricio Scheffer2009-05-13T01:14:09Z2009-05-13T01:14:09Z<p>Here's what I've been using:</p>
<pre><code>public class DisposableStopwatch: IDisposable {
private readonly Stopwatch sw;
private readonly Action<TimeSpan> f;
public DisposableStopwatch(Action<TimeSpan> f) {
this.f = f;
sw = Stopwatch.StartNew();
}
public void Dispose() {
sw.Stop();
f(sw.Elapsed);
}
}
</code></pre>
<p>Usage:</p>
<pre><code>using (new DisposableStopwatch(t => Console.WriteLine("{0} elapsed", t)) {
// do stuff that I want to measure
}
</code></pre>