Wrapping StopWatch timing with a delegate or lambda? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T16:22:54Z http://stackoverflow.com/feeds/question/232848 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/232848/wrapping-stopwatch-timing-with-a-delegate-or-lambda 48 Wrapping StopWatch timing with a delegate or lambda? Jeff Atwood 2008-10-24T08:39:46Z 2009-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 &lt; 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#232852 5 Answer by Mark Ingram for Wrapping StopWatch timing with a delegate or lambda? Mark Ingram 2008-10-24T08:44:00Z 2008-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, () =&gt; 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 &lt; 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 &lt; loops; ++i) { action.Invoke(); } sw.Stop(); return sw; } } </code></pre> <p>Then you could use it like:</p> <pre><code>StopWatch sw = Timing.TimedFor(() =&gt; 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#232870 84 Answer by Matt Hamilton for Wrapping StopWatch timing with a delegate or lambda? Matt Hamilton 2008-10-24T08:55:21Z 2008-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 &lt; 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(() =&gt; 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#232871 1 Answer by Morten Christiansen for Wrapping StopWatch timing with a delegate or lambda? Morten Christiansen 2008-10-24T08:55:56Z 2008-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&lt;T&gt;(int iterations, Action&lt;T&gt; action, T param) { var sw = new Stopwatch(); sw.Start(); for (int i = 0; i &lt; iterations; i++) { action.Invoke(param); } sw.Stop(); return sw; } public static Stopwatch MeasureTime&lt;T, K&gt;(int iterations, Action&lt;T, K&gt; action, T param1, K param2) { var sw = new Stopwatch(); sw.Start(); for (int i = 0; i &lt; 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#232879 4 Answer by Mark S. Rasmussen for Wrapping StopWatch timing with a delegate or lambda? Mark S. Rasmussen 2008-10-24T08:58:42Z 2008-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 = () =&gt; { for (int i = 0; i &lt; 10000000; i++) Math.Sqrt(i); }; for(int i=1; i&lt;=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#232946 1 Answer by Davy Landman for Wrapping StopWatch timing with a delegate or lambda? Davy Landman 2008-10-24T09:48:09Z 2008-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#233519 2 Answer by jyoung for Wrapping StopWatch timing with a delegate or lambda? jyoung 2008-10-24T13:27:47Z 2008-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#741630 0 Answer by Sam Saffron for Wrapping StopWatch timing with a delegate or lambda? Sam Saffron 2009-04-12T11:28:15Z 2009-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 &lt; 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(_ =&gt; Guid.NewGuid().ToString()) .ToArray(); 50.Times("Add 10,000 random strings to a Dictionary", () =&gt; { var dict = new Dictionary&lt;string, object&gt;(); foreach (var str in randomStrings) { dict.Add(str, null); } }); 50.Times("Add 10,000 random strings to a SortedList", () =&gt; { var list = new SortedList&lt;string, object&gt;(); 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#855624 1 Answer by Mauricio Scheffer for Wrapping StopWatch timing with a delegate or lambda? Mauricio Scheffer 2009-05-13T01:14:09Z 2009-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&lt;TimeSpan&gt; f; public DisposableStopwatch(Action&lt;TimeSpan&gt; 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 =&gt; Console.WriteLine("{0} elapsed", t)) { // do stuff that I want to measure } </code></pre>