active questions tagged running-time - Stack Overflowmost recent 30 from stackoverflow.com2009-12-20T19:59:04Zhttp://stackoverflow.com/feeds/tag/running-timehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/545844/biggest-performance-improvement-youve-had-with-the-smallest-change81Biggest performance improvement you've had with the smallest change?JoelFan2009-02-13T13:08:12Z2009-12-12T03:14:42Z
<p>What's the biggest performance improvement you've had with the smallest change? For example, I once improved the performance of a certain page on a high-profile web app by a factor of 10, just by moving "where customerID = ?" to a different place inside a complicated SQL statement (before my change it had been selecting <strong>all</strong> customers in a join, then later selecting out the desired customer).</p>
http://stackoverflow.com/questions/1864457/record-the-application-session-time-using-iphone-sdk0Record the Application session time using iPhone SDK?Shivan Raptor2009-12-08T03:54:41Z2009-12-08T03:58:41Z
<p>I want to record the duration of Application executed in order to keep logs of activity of users. Should I use a global NSTimer to record the time? or is there any better method?</p>
<p>Sample codes are appreciated.</p>
http://stackoverflow.com/questions/1828160/javascript-run-time-analysis1Javascript run-time analysiskingrichard20052009-12-01T19:01:17Z2009-12-05T13:02:54Z
<p>Hello, I've written a Javascript file, using jQuery, that I would like to perform run-time tests on. I've never done this before and was just curious on how to go about it. One site I visited suggested this as a measurement:</p>
<pre><code>var start = (new Date).getTime();
/* Run a test. */
var diff = (new Date).getTime() - start;
</code></pre>
<p>This makes sense, right now my script is acting on a web page, all it does is sort clicked-on columns in a table. What I'm interested in knowing, besides the actual timings, is how to interpret the timings in Big-O notation. Also, is this the most standard method of measuring script run-times? Your thoughts are appreciated.</p>
<p>UPDATE:
Thanks guys for your input, installed Firebug and am playing with the profiler. I'll attempt to see if I can come up with an approximation to check the timings against for Big-O notation.</p>
http://stackoverflow.com/questions/282468/string-operation-optimisation-in-c5String operation optimisation in C#Matthew Scharley2008-11-11T23:12:49Z2009-12-01T14:31:30Z
<p>The following C# code takes 5 minutes to run:</p>
<pre><code>int i = 1;
string fraction = "";
while (fraction.Length < 1000000)
{
fraction += i.ToString();
i++;
}
</code></pre>
<p>"Optimising it" like this causes it to run in 1.5 seconds:</p>
<pre><code>int i = 1;
string fraction = "";
while (fraction.Length < 1000000)
{
// concatenating strings is much faster for small strings
string tmp = "";
for (int j = 0; j < 1000; j++)
{
tmp += i.ToString();
i++;
}
fraction += tmp;
}
</code></pre>
<p><strong>EDIT:</strong> Some people suggested using <code>StringBuilder</code>, which is an excellent suggestion also, and this comes out at 0.06s:</p>
<pre><code>int i = 1;
StringBuilder fraction = new StringBuilder();
while (fraction.Length < 1000000)
{
fraction.Append(i);
i++;
}
</code></pre>
<p>Playing around to find the optimum value of <code>j</code> is a topic for another time, but why exactly does this non-obvious optimisation work so well? Also, on a related topic, I've heard it said that you should never use the <code>+</code> operator with strings, in favour of <code>string.Format()</code>, is this true?</p>
http://stackoverflow.com/questions/412019/math-optimization-in-c26Math optimization in C#hb2009-01-05T00:57:53Z2009-11-29T01:51:02Z
<p>I've been profiling an application all day long and, having optimized a couple bits of code, I'm left with this on my todo list. It's the activation function for a neural network, which gets called over a 100 million times. According to dotTrace, it amounts to about 60% of the overall function time.</p>
<p>How would you optimize this?</p>
<pre><code> public static float Sigmoid(double value) {
return (float) (1.0 / (1.0 + Math.Pow(Math.E, -value)));
}
</code></pre>
http://stackoverflow.com/questions/2134/do-sealed-classes-really-offer-performance-benefits6Do sealed classes really offer performance Benefits?Vaibhav2008-08-05T12:00:28Z2009-11-26T17:58:10Z
<p>I have come across a lot of optimization tips which say that you should mark your classes as sealed to get extra performance benefits.</p>
<p>I ran some tests to check the performance differential and found none. Am I doing something wrong? Am I missing the case where sealed classes will give better results?</p>
<p>Has anyone run tests and seen a difference?</p>
<p>Help me learn :) </p>
http://stackoverflow.com/questions/1777461/best-case-running-time-to-solve-an-np-complete-problem4Best-case Running-time to solve an NP-Complete problem?Claudiu2009-11-22T01:28:48Z2009-11-23T17:06:29Z
<p>What is the fastest algorithm that exists up with to solve a particular NP-Complete problem? For example, a naive implementation of <a href="http://en.wikipedia.org/wiki/Travelling%5Fsalesman%5Fproblem" rel="nofollow">travelling salesman</a> is O(n!), but with dynamic programming it can be done in O(n^2 * 2^n). Is there any perhaps "easier" NP-Complete problem that has a better running time?</p>
<p>I'm curious about exact solutions, not approximations.</p>
http://stackoverflow.com/questions/577554/when-is-assembler-faster-than-c59When is assembler faster than C?Adam Bellaire2009-02-23T13:03:26Z2009-11-22T21:22:26Z
<p>One of the stated reasons for knowing assembler is that, on occasion, it can be employed to write code that will be more performant than writing that code in a higher-level language, C in particular. However, I've also heard it stated many times that although that's not entirely false, the cases where assembler can <strong>actually</strong> be used to generate more performant code are both extremely rare and require expert knowledge of and experience with assembler. </p>
<p>This question doesn't even get into the fact that assembler instructions will be machine-specific and non-portable, or any of the other aspects of assembler. There are plenty of good reasons for knowing assembler besides this one, of course, but this is meant to be a specific question soliciting examples and data, not an extended discourse on assembler versus higher-level languages.</p>
<p>Can anyone provide some <strong>specific examples</strong> of cases where assembler will be faster than well-written C code using a modern compiler, and can you support that claim with profiling evidence? I am pretty confident these cases exist, but I really want to know exactly how esoteric these cases are, since it seems to be a point of some contention.</p>
http://stackoverflow.com/questions/1763649/running-time-of-minimum-spanning-tree-prim-method0Running time of minimum spanning tree? ( Prim method )sklitzz2009-11-19T14:26:19Z2009-11-19T17:20:37Z
<p>I have written a code that solves MST using Prim method. I read that this kind of implementation(using priority queue) should have O(E + VlogV) = O(VlogV) where E is the number of edges and V number of Edges but when I look at my code it simply doesn't look that way.I would appreciate it if someone could clear this up for me.</p>
<p>To me it seems the running time is this:</p>
<p>The while loop takes O(E) times(until we go through all the edges)
Inside that loop we extract an element from the Q which takes O(logE) time.
And the second inner loop takes O(V) time(although we dont run this loop everytime
it is clear that it will be ran V times since we have to add all the vertices )</p>
<p>My conclusion would be that the running time is: O( E(logE+V) ) = O( E*V ).</p>
<p>This is my code:</p>
<pre><code>#define p_int pair < int, int >
int N, M; //N - nmb of vertices, M - nmb of edges
int graph[100][100] = { 0 }; //adj. matrix
bool in_tree[100] = { false }; //if a node if in the mst
priority_queue< p_int, vector < p_int >, greater < p_int > > Q;
/*
keeps track of what is the smallest edge connecting a node in the mst tree and
a node outside the tree. First part of pair is the weight of the edge and the
second is the node. We dont remember the parent node beaceuse we dont need it :-)
*/
int mst_prim()
{
Q.push( make_pair( 0, 0 ) );
int nconnected = 0;
int mst_cost = 0;
while( nconnected < N )
{
p_int node = Q.top(); Q.pop();
if( in_tree[ node.second ] == false )
{
mst_cost += node.first;
in_tree[ node.second ] = true;
for( int i = 0; i < N; ++i )
if( graph[ node.second ][i] > 0 && in_tree[i]== false )
Q.push( make_pair( graph[ node.second ][i], i ) );
nconnected++;
}
}
return mst_cost;
}
</code></pre>
http://stackoverflow.com/questions/228038/best-way-to-reverse-a-string-in-c-2-09Best way to reverse a string in C# 2.0Guy2008-10-23T00:31:32Z2009-11-14T10:05:41Z
<p>I've just had to write a string reverse function in C# 2.0 (i.e. LINQ not available) and came up with this:</p>
<pre><code>public string Reverse(string text)
{
char[] cArray = text.ToCharArray();
string reverse = String.Empty;
for (int i = cArray.Length - 1; i > -1; i--)
{
reverse += cArray[i];
}
return reverse;
}
</code></pre>
<p>Personally I'm not crazy about the function and am convinced that there's a better way to do it. Is there?</p>
http://stackoverflow.com/questions/222070/how-to-speed-up-wpf-programs9How to speed up WPF programs?Sam2008-10-21T14:24:59Z2009-11-04T10:28:52Z
<p>I love programming with and for Windows Presentation Framework. Mostly I write browser-like apps using WPF and XAML.</p>
<p>But what really annoys me is the slowness of WPF. A simple page with only a few controls loads fast enough, but as soon as a page is a teeny weeny bit more complex, like containing a lot of data entry fields, one or two tab controls, and stuff, it gets painful.</p>
<p>Loading of such a page can take more than one second. Seconds, indeed, especially on not so fast computers (read: the customers computers) it can take ages.</p>
<p>Same with changing values on the page. Everything about the WPF UI is somehow sluggy.</p>
<p>This is so mean! They give me this beautiful framework, but make it so excruciatingly slow so I'll have to apologize to our customers all the time!</p>
<p>My Question: </p>
<ol>
<li>How do you speed up WPF?</li>
<li>How do you profile bottlenecks?</li>
<li>How do you deal with the slowness?</li>
</ol>
<p>Since this seems to be an universal problem with WPF, I'm looking for general advice, useful for many situations and problems.</p>
<p>Some other related questions:</p>
<ul>
<li><a href="http://stackoverflow.com/questions/38642/what-tools-do-you-use-for-wpf-development">What tools do you use for WPF development</a></li>
<li><a href="http://stackoverflow.com/questions/189244/tools-to-develop-wpf-or-silverlight-applications">Tools to develop WPF or Silverlight applications</a></li>
</ul>
http://stackoverflow.com/questions/251781/how-to-find-the-kth-largest-element-in-an-unsorted-array-of-length-n-in-on6How to find the kth largest element in an unsorted array of length n in O(n)?MrDatabase2008-10-30T21:06:15Z2009-10-30T17:42:47Z
<p>I believe there's a way to find the kth largest element in an unsorted array of length n in O(n). Or perhaps it's "expected" O(n) or something. How can we do this?</p>
<p>Cheers!</p>
<p>p.s. this is not for homework.</p>
http://stackoverflow.com/questions/1596252/estimate-power-consumption-based-on-running-time-analysis-code-size0Estimate Power Consumption Based on Running Time Analysis / Code SizeQua2009-10-20T17:49:55Z2009-10-21T02:38:46Z
<p>I've developed and tested a C program on my PC and now I want to give an estimate of the power consumption required for the program to do a single run. I've analysised the running time of the application and of invidiual function calls within the application and I know the code size both in assembly lines, but also raw C lines.</p>
<p>How would I give an estimate of the power consumption based on the performance analysis and/code size? I suppose it scales with the amount of lines that uses the CPU for computations or does memory access but I was hoping for a more precise answer.</p>
<p>Also, how would I tell the difference between the power consumption on say my PC compared to a on a microchip device?</p>
http://stackoverflow.com/questions/1576904/how-to-change-iphone-app-language-during-runtime0How to change iPhone app language during runtime?shinjin2009-10-16T08:46:15Z2009-10-18T12:34:00Z
<p>Is there a way to change the application language during runtime?</p>
<p>So, after the change <code>NSLocalizedString</code> immediately returns the string for the new language.</p>
<p>What I'm doing now is changing the language using the code below:</p>
<pre><code>- (void)onChangeLanguage: (id)sender {
NSArray *lang = [NSArray arrayWithObjects:((InfoWhatever *)sender).language, nil];
[[NSUserDefaults standardUserDefaults] setObject:lang forKey:@"AppleLanguages"];
NSUserDefaults *defaults = [NSUserDefaults standardUserDefaults];
NSArray *languages = [defaults objectForKey:@"AppleLanguages"];
NSString *currentLanguage = [languages objectAtIndex:0];
NSLog(@"Current language: %@", currentLanguage);
}
</code></pre>
<p>The language will change but <em>only after restarting</em> the app.</p>
http://stackoverflow.com/questions/926266/performance-optimization-strategies-of-last-resort29Performance optimization strategies of last resort?jerryjvl2009-05-29T14:26:59Z2009-10-09T11:01:10Z
<p>There are plenty of performance questions on this site already, but it occurs to me that almost all are very problem-specific and fairly narrow. And almost all repeat the advice to avoid premature optimization.</p>
<p>Let's assume:</p>
<ul>
<li>the code already is working correctly</li>
<li>the algorithms chosen are already optimal for the circumstances of the problem</li>
<li>the code has been measured, and the offending routines have been isolated</li>
<li>all attempts to optimize will also be measured to ensure they do not make matters worse</li>
</ul>
<p>What I am looking for here is strategies and tricks to squeeze out up to the last few percent in a critical algorithm when there is nothing else left to do but whatever it takes.</p>
<p>Ideally, try to make answers language agnostic, and indicate any down-sides to the suggested strategies where applicable.</p>
<p>I'll add a reply with my own initial suggestions, and look forward to whatever else the SO community can think of.</p>
http://stackoverflow.com/questions/1142675/why-does-processing-multiple-individual-targets-take-longer-when-nant-is-directed0Why does processing multiple individual targets take longer when Nant is directed to process them from a single target?mezoid2009-07-17T11:20:28Z2009-09-10T12:00:01Z
<p>I have a nant build script that specifies the compilation of various Visual Studio solution files.</p>
<pre><code><target name="compile.solution1" description="Compiles solution 1">
<msbuild project="${src.dir}\Solution1.sln" verbosity="${build.verbosity}">
<property name="Configuration" value="${build.config}" />
<property name="OutputPath" value="${build.fullpath}/${prefix.sol1}" />
<property name="ReferencePath" value="${assembly.dir}" />
</msbuild>
</target>
</code></pre>
<p>I have multiple solutions specified in targets compile.solution1, compile.solution2, compile.solution3...compile.solution7</p>
<p>I have another target that specifies that the whole bunch of solutions are to be compiled:</p>
<pre><code><target name="compile" depends="compile.solution1, compile.solution2,
compile.solution3, compile.solution4, compile.solution5, compile.solution6,
compile.solution7" description="Compiles all targets" />
</code></pre>
<p>When I time how long it it takes to execute the target "compile" and compare it to the sum of the time it tasks to execute each of the individual compile.solutionX targets I find that the "compile" target takes 30 seconds longer.</p>
<p>I don't understand why this is the case? In my mind the "compile" target should act as a for-loop and the difference between it and executing each one individually should be minimal.</p>
<p>Does anyone know if more goes on in the background in Nant when processing multiple solutions defined in a single target?</p>
<p>Sorry for the horrible title of the question....I just didn't know how to phrase it.</p>
http://stackoverflow.com/questions/1259305/another-question-about-premature-optimization1Another question about premature optimizationnanda2009-08-11T09:29:11Z2009-08-27T15:32:56Z
<p>Knuth said:
We should forget about small efficiencies, say about 97% of the time: premature optimization is the root of all evil</p>
<p>I’m curious how he came up with 97%. Could someone please share something about this?</p>
<p>UPDATE: The problem is: This sentence is written in a research paper, how come a subjective statement get accepted in such formal document?</p>
http://stackoverflow.com/questions/1285052/how-long-does-my-code-take-to-run3How long does my code take to run?Vahid.m2009-08-16T18:54:43Z2009-08-16T19:37:24Z
<p>How can I find out how much time my C# code takes to run?</p>
http://stackoverflow.com/questions/1263706/performing-your-own-runtime-analysis-of-your-code-in-c3Performing your own runtime analysis of your code in C#Matt2009-08-12T00:40:35Z2009-08-13T16:34:28Z
<p>I have written a large C# app with many methods in many classes.</p>
<p>I'm trying to keep a log of what gets called and how often during my development. (I keep a record in a DB)</p>
<p>Every method is padded with the following calls:</p>
<pre><code>void myMethod()
{
log(entering,args[]);
log(exiting,args[]);
}
</code></pre>
<p>Since I want to do this for all my methods, is there a better way to do this then having to replicate those lines of code in every method?</p>
http://stackoverflow.com/questions/560089/unix-command-for-benchmarking-code-running-k-times2Unix Command For Benchmarking Code Running K timesneversaint2009-02-18T07:00:38Z2009-08-12T18:30:24Z
<p>Hi, </p>
<p>Suppose I have a code executed in Unix this way:</p>
<pre><code>$ ./mycode
</code></pre>
<p>My question is is there a way I can time the running time of my code
executed K times. The value of K = 1000 for example.</p>
<p>I am aware of Unix "time" command, but that only executed 1 instance.</p>
http://stackoverflow.com/questions/780349/runtime-optimization-of-static-languages-jit-for-c4Runtime optimization of static languages: JIT for C++?Thomas L Holaday2009-04-23T04:42:50Z2009-08-12T18:29:47Z
<p>Is anyone using JIT tricks to improve the runtime performance of statically compiled languages such as C++? It seems like hotspot analysis and branch prediction based on observations made during runtime could improve the performance of any code, but maybe there's some fundamental strategic reason why making such observations and implementing changes during runtime are only possible in virtual machines. I distinctly recall overhearing C++ compiler writers mutter "you can do that for programs written in C++ too" while listening to dynamic language enthusiasts talk about collecting statistics and rearranging code, but my web searches for evidence to support this memory have come up dry. </p>
http://stackoverflow.com/questions/1250090/graph-layout-optimization-in-c0Graph layout optimization in C#hb2009-08-08T23:03:01Z2009-08-11T05:00:03Z
<p>I've got a list of objects that I need to organize as an aesthetic graph. My current approach involves IronPython and a genetic algorithm, but this takes way too long.</p>
<p>I've been reading up on Graphviz, QuickGraph and Graph#, but I don't need the visualization part - I already have an app that will display the nodes given the x/y coordinates. I've been told that both the Sugiyama algorithm and the force-based family of algorithms tend to output pleasing graphs, but I can't seem to find a .NET library that will output the coordinates instead of the image without some pretty severe sourcecode hacking.</p>
<p>Can anyone recommend libraries, algorithms or the like? </p>
http://stackoverflow.com/questions/1241737/why-does-this-speed-up-my-sql-query3Why does this speed up my SQL query?Keith2009-08-06T21:53:24Z2009-08-07T08:10:56Z
<p>I learned a trick a while back from a DBA friend to speed up certain SQL queries. I remember him mentioning that it had something to do with how SQL Server compiles the query, and that the query path is forced to use the indexed value.</p>
<p>Here is my original query (takes 20 seconds):</p>
<pre><code>select Part.Id as PartId, Location.Id as LocationId
FROM Part, PartEvent PartEventOuter, District, Location
WHERE
PartEventOuter.EventType = '600' AND PartEventOuter.AddressId = Location.AddressId
AND Part.DistrictId = District.Id AND Part.PartTypeId = 15
AND District.SubRegionId = 11 AND PartEventOuter.PartId = Part.Id
AND PartEventOuter.EventDateTime <= '4/28/2009 4:30pm'
AND NOT EXISTS (
SELECT PartEventInner.EventDateTime
FROM PartEvent PartEventInner
WHERE PartEventInner.PartId = PartEventOuter.PartId
AND PartEventInner.EventDateTime > PartEventOuter.EventDateTime
AND PartEventInner.EventDateTime <= '4/30/2009 4:00pm')
</code></pre>
<p>Here is the "optimized" query (less than 1 second):</p>
<pre><code>select Part.Id as PartId, Location.Id as LocationId
FROM Part, PartEvent PartEventOuter, District, Location
WHERE
PartEventOuter.EventType = '600' AND PartEventOuter.AddressId = Location.AddressId
AND Part.DistrictId = District.Id AND Part.PartTypeId = 15
AND District.SubRegionId = 11 AND PartEventOuter.PartId = Part.Id
AND PartEventOuter.EventDateTime <= '4/28/2009 4:30pm'
AND NOT EXISTS (
SELECT PartEventInner.EventDateTime
FROM PartEvent PartEventInner
WHERE PartEventInner.PartId = PartEventOuter.PartId
**AND EventType = EventType**
AND PartEventInner.EventDateTime > PartEventOuter.EventDateTime
AND PartEventInner.EventDateTime <= '4/30/2009 4:00pm')
</code></pre>
<p>Can anyone explain in detail why this runs so much faster? I'm just trying to get a better understanding of this.</p>
http://stackoverflow.com/questions/837155/fastest-function-to-generate-excel-column-letters-in-c6Fastest function to generate Excel column letters in C# Old Man2009-05-07T21:35:05Z2009-08-06T06:56:49Z
<p>What is the fastest c# function that takes and int and returns a string containing a letter or letters for use in an Excel function? For example, 1 returns "A", 26 returns "Z", 27 returns "AA", etc.</p>
<p>This is called tens of thousands of times and is taking 25% of the time needed to generate a large spreadsheet with many formulas. </p>
<pre><code>public string Letter(int intCol) {
int intFirstLetter = ((intCol) / 676) + 64;
int intSecondLetter = ((intCol % 676) / 26) + 64;
int intThirdLetter = (intCol % 26) + 65;
char FirstLetter = (intFirstLetter > 64) ? (char)intFirstLetter : ' ';
char SecondLetter = (intSecondLetter > 64) ? (char)intSecondLetter : ' ';
char ThirdLetter = (char)intThirdLetter;
return string.Concat(FirstLetter, SecondLetter, ThirdLetter).Trim();
}
</code></pre>
http://stackoverflow.com/questions/658502/what-is-the-relation-between-merges-and-number-of-items-in-a-in-k-way-merge0What is the relation between merges and number of items in a in k-way mergefxc1232009-03-18T14:31:20Z2009-08-03T22:00:01Z
<p>The question is: In a k-way merge, how many merge operation will we perform.
For example: 2-way merge:2 nodes 1 merge; 3 nodes 2 merge; 4 nodes 3 merge. So we get M(n)=n-1.</p>
<p>What the the M(n) when k is arbitrary?</p>
http://stackoverflow.com/questions/642093/hibernate-query-runs-slow-in-the-system-but-fast-when-run-directly1Hibernate Query runs slow in the system, but fast when run directly.Ged Byrne2009-03-13T10:25:01Z2009-08-01T07:58:08Z
<p>I have a problem similar to the on in this weeks podcast.</p>
<p>We have a Java application using hibernate with Sql Server 2005.</p>
<p>Hibernate is generating a Query for us that is taking nearly 20 minutes to complete.</p>
<p>If we take the same query using show_sql and replace the questions marks with constant value the answer is returned immediately.</p>
<p>I think we need option(recompile), but I can't figure out how to do that with HQL.</p>
<p>Please help!</p>
http://stackoverflow.com/questions/989546/will-optimizing-code-become-unnecessary5Will optimizing code become unnecessary? Hooked2009-06-12T23:59:25Z2009-07-31T08:31:58Z
<p>If <a href="http://en.wikipedia.org/wiki/Moore%27s%5Flaw" rel="nofollow" title="Moore's Law">Moore's Law</a> holds true, and CPUs/GPUs become increasingly fast, will software (and, by association, you software developers) still push the boundaries to the extent that you still need to optimize your code? Or will a naive factorial solution be good enough for your code (etc)?</p>
http://stackoverflow.com/questions/856228/how-can-i-improve-this-square-root-method4How can I improve this square root method?David Brown2009-05-13T05:34:45Z2009-07-22T21:47:09Z
<p>I know this sounds like a homework assignment, but it isn't. Lately I've been interested in algorithms used to perform certain mathematical operations, such as sine, square root, etc. At the moment, I'm trying to write the <a href="http://en.wikipedia.org/wiki/Babylonian%5Fmethod#Babylonian%5Fmethod" rel="nofollow">Babylonian method</a> of computing square roots in C#.</p>
<p>So far, I have this:</p>
<pre><code>public static double SquareRoot(double x) {
if (x == 0) return 0;
double r = x / 2; // this is inefficient, but I can't find a better way
// to get a close estimate for the starting value of r
double last = 0;
int maxIters = 100;
for (int i = 0; i < maxIters; i++) {
r = (r + x / r) / 2;
if (r == last)
break;
last = r;
}
return r;
}
</code></pre>
<p>It works just fine and produces the exact same answer as the .NET Framework's Math.Sqrt() method every time. As you can probably guess, though, it's slower than the native method (by around 800 ticks). I know this particular method will never be faster than the native method, but I'm just wondering if there are any optimizations I can make.</p>
<p>The only optimization I saw immediately was the fact that the calculation would run 100 times, even after the answer had already been determined (at which point, r would always be the same value). So, I added a quick check to see if the newly calculated value is the same as the previously calculated value and break out of the loop. Unfortunately, it didn't make much of a difference in speed, but just seemed like the right thing to do.</p>
<p>And before you say "Why not just use Math.Sqrt() instead?"... I'm doing this as a learning exercise and do not intend to actually use this method in any production code.</p>
http://stackoverflow.com/questions/1157689/finding-the-nearest-used-index-before-a-specified-index-in-an-array-fast2Finding the nearest used index before a specified index in an array (Fast)lgratian2009-07-21T07:16:18Z2009-07-22T05:12:28Z
<p>This question is related to <a href="http://stackoverflow.com/questions/1053242/array-of-pairs-of-3-bit-elements">http://stackoverflow.com/questions/1053242/array-of-pairs-of-3-bit-elements</a><br />
This array has 52 pairs (about 40 bytes), and I want to find the first pair before the specified one that has it's values different from 0 (used pair).
The obvious solution would be to check each pair < than this one (scan from right to left), but this seems to be very inefficient if there are many unused pairs (set to 0). </p>
<p>This image may explain better the situation:<br />
<img src="http://img176.imageshack.us/img176/2702/drawing1.png"/><br />
Pairs 0, 1 and 51 are used.<br />
I want to find the first used pair before 51 (which is 1 here). </p>
<p>I tried tricks like </p>
<pre><code>if(*((int *)&array[arrayPos]) == 0) {
arrayPos -= sizeof(int);
pairPos -= ???
}
</code></pre>
<p>The problem here is that subtracting from <em>pairPos</em> is not that simple, because of the 6 bits/pair, so I ended with a lookup table based on some relations between <em>pairPos</em> and <em>arrayPos</em>, and all this made the solution perform like the trivial one. </p>
<p>Is there any way to make this lookup faster ? Another problem is that there is only 1 unused byte... maybe I can make space for another 4. If there were at least 7 I could use a bitmap of the array and it would be much faster to skip over unused pairs.</p>
<p>Thanks in advance.</p>
http://stackoverflow.com/questions/1105817/efficency-of-comparisons-in-c-absx1-vs-absx-00Efficency of Comparisons in C++? ( abs(X)>1 vs abs(x) != 0)Luciano2009-07-09T18:52:50Z2009-07-09T20:48:25Z
<p>I know- Premature optimization.<br />
But I've got code that's supposed to find out if a position is changed vs a cached position.</p>
<p>Current code is:</p>
<pre><code>if(abs(newpos-oldpos) > 1){
.....
}
</code></pre>
<p>Is it more efficient to use the following?</p>
<pre><code>if(abs(newpos-oldpos) != 0){
....
}
</code></pre>
<p>Why or why not? I'm currently debating it my head which is more readable and was wondering if there was a performance difference I was missing.</p>