There has been an ongoing discussion of this in the c# chat. The original question was this:
Is calculating e.g. (Int32) 5+5 faster then 1234723847+32489237 ?
My initial thought was that there would be optimizations at the binary level to ignore padding zeros, so smaller numbers would be quicker.
So, I tested it. If you're interested, here's the program. If not, just skip to the results.
Stopwatch sw = new Stopwatch();
Int64 c = 0;
long msDifferential = 0; //
int reps = 10; //number of times to run the entire program
for (int j = 0; j < reps; j++)
{
sw.Start(); //
sw.Stop(); // Just in case there's any kind of overhead for the first Start()
sw.Reset(); //
sw.Start(); //One hundred million additions of "small" numbers
for (Int64 i = 0, k = 1; i < 100000000; i++, k++)
{
c = i + k;
}
sw.Stop();
long tickssmall = sw.ElapsedTicks;
long mssmall = sw.ElapsedMilliseconds;
sw.Reset();
sw.Start(); //One hundred million additions of "big" numbers
for (Int64 i = 100000000000000000, k = 100000000000000001; i < 100000000100000000; i++, k++)
{
c = i + k;
}
sw.Stop();
long ticksbig = sw.ElapsedTicks;
long msbig = sw.ElapsedMilliseconds;
//total differentials for additions
ticksDifferential += ticksbig - tickssmall;
msDifferential += msbig - mssmall;
}
//average differentials per 100000000 additions
long averageDifferentialTicks = ticksDifferential / reps;
long averageDifferentialMs = msDifferential / reps;
//average differentials per addition
long unitAverageDifferentialTicks = averageDifferentialTicks / 100000000;
long unitAverageDifferentialMs = averageDifferentialMs / 100000000;
System.IO.File.AppendAllText(@"C:\Users\phillip.schmidt\My Documents\AdditionTimer.txt", "Average Differential (Ticks): " + unitAverageDifferentialTicks.ToString() + ", ");
System.IO.File.AppendAllText(@"C:\Users\phillip.schmidt\My Documents\AdditionTimer.txt", "Average Differential (Milliseconds): " + unitAverageDifferentialMs.ToString());
Results
Debug Mode
- Average unit differential: 2.17 nanoseconds
Release Mode (Optimizations Enabled)
- Average unit differential: 0.001 nanoseconds
Release Mode (Optimizations Disabled)
- Average unit differential: 0.01 nanoseconds
So in debug mode, "big" numbers take about 2.17 nanoseconds longer to add together, per addition, than "small" ones. However, in release mode, the difference isn't nearly as significant.
Questions
So I had a few follow-up questions:
- Which mode is most accurate for my purposes? (Debug, Release, Release(no opt) )
- Are my results accurate? If so, what is the cause for the differences in speed?
- Why is there so much greater of a difference in debug mode?
- Is there anything else that I should have taken into consideration?