vote up 16 vote down star
5

I'm writing a financial application in C# where performance (i.e. speed) is critical. Because it's a financial app I have to use the Decimal datatype intensively.

I've optimized the code as much as I could with the help of a profiler. Before using Decimal, everything was done with the Double datatype and the speed was several times faster. However, Double is not an option because of its binary nature, causing a lot of precision errors over the course of multiple operations.

Is there any decimal library that I can interface with C# that could give me a performance improvement over the native Decimal datatype in .NET?

Based on the answers I already got, I noticed I was not clear enough, so here are some additional details:

  • The app has to be as fast as it can possibly go (i.e. as fast as it was when using Double instead of Decimal would be a dream). Double was about 15x faster than Decimal, as the operations are hardware based.
  • The hardware is already top-notch (I'm running on a Dual Xenon Quad-Core) and the application uses threads, so CPU utilization is always 100% on the machine. Additionally, the app is running in 64bit mode, which gives it a mensurable performance advantage over 32bit.
  • I've optimized past the point of sanity (more than one month and a half optimizing; believe it or not, it now takes approx. 1/5000 of what it took to do the same calculations I used as a reference initially); this optimization involved everything: string processing, I/O, database access and indexes, memory, loops, changing the way some things were made, and even using "switch" over "if" everywhere it made a difference. The profiler is now clearly showing that the remaining performance culprit is on the Decimal datatype operators. Nothing else is adding up a considerable amount of time.
  • You have to believe me here: I've gone as far as I could possibly go in the realm of C#.NET to optimize the application, and I'm really amazed at its current performance. I'm now looking for a good idea in order to improve Decimal performance to something close to Double. I know it's only a dream, but just wanted to check I thought of everything possible. :)

Thanks!

flag
1  
You are on the verge of premature optimization, just code the app correctly, then tweak after the fact – TravisO Dec 14 '08 at 19:30
You've done all the low level C# optimizations. There may be some algorithmic improvements left (e.g. doing fewer operations on the decimals). – Brian May 21 at 13:34

6 Answers

vote up 18 vote down

you can use the long datatype. Sure, you won't be able to store fractions in there, but if you code your app to store pennies instead of pounds, you'll be ok. Accuracy is 100% for long datatypes, and unless you're working with vast numbers (use a 64-bit long type) you'll be ok.

If you can't mandate storing pennies, then wrap an integer in a class and use that.

link|flag
I agree. Use a 64-bit machine and long's. Plus, it came to my mind - I think .NET had some tools to generate more machine-specific code. I believe it was called ngen. Perhaps there is performance to be gained there... – Vilx- Dec 15 '08 at 8:55
This is definitely the way to go. Use long or int, and store pennies, or fractions of pennies depending on what precision you require. Many operations will now be as fast or faster than using doubles. – Chris Dec 15 '08 at 9:20
Wrapping it in a class will incur heap overheads, and even a struct will slow things down, due to operator overloading or function calls being required, so raw long/int storage is best for performance. – Chris Dec 15 '08 at 9:22
That's a really interesting idea. Normally financial applications need to be more concerned about small numbers than the other way around. I really like this solution. +1 – Trap Dec 15 '08 at 9:26
You don't need to store the fractions - just keep a fixed scaling factor "in mind." For example, your type stores 1/1000 cent, then just divide your result at the end by this factor (100,000) to get it in dollars. – ILoveFortran Jan 4 at 22:17
show 4 more comments
vote up 4 vote down

The problem is basically that double/float are supported in hardware, while Decimal and the like are not. I.e. you have to choose between speed + limited precision and greater precision + poorer performance.

link|flag
vote up 4 vote down

You say it needs to be fast, but do you have concrete speed requirements? If not, you may well optimise past the point of sanity :)

As a friend sitting next to me has just suggested, can you upgrade your hardware instead? That's likely to be cheaper than rewriting code.

The most obvious option is to use integers instead of decimals - where one "unit" is something like "a thousandth of a cent" (or whatever you want - you get the idea). Whether that's feasible or not will depend on the operations you're performing on the decimal values to start with. You'll need to be very careful when handling this - it's easy to make mistakes (at least if you're like me).

Did the profiler show particular hotspots in your application that you could optimise individually? For instance, if you need to do a lot of calculations in one small area of code, you could convert from decimal to an integer format, do the calculations and then convert back. That could keep the API in terms of decimals for the bulk of the code, which may well make it easier to maintain. However, if you don't have pronounced hotspots, that may not be feasible.

+1 for profiling and telling us that speed is a definite requirement, btw :)

link|flag
vote up 0 vote down

I cannot give a comment or vote down yet since I just started on stack overflow. My comment on alexsmart (posted 23 Dec 2008 12:31) is that the expression Round(n/precision, precision), where n is int and precisions is long will not do what he thinks:

1) n/precision will return an integer-division, i.e. it will already be rounded but you won't be able to use any decimals. The rounding behavior is also different from Math.Round(...).

2) The code "return Math.Round(n/precision, precision).ToString()" does not compile due to an ambiguity between Math.Round(double, int) and Math.Round(decimal, int). You will have to cast to decimal (not double since it is a financial app) and therefore can as well go with decimal in the first place.

3) n/precision, where precision is 4 will not truncate to four decimals but divide by 4. E.g., Math.Round( (decimal) (1234567/4), 4) returns 308641. (1234567/4 = 308641.75), while what you probably wanted to to is get 1235000 (rounded to a precision of 4 digits up from the trailing 567). Note that Math.Round allows to round to a fixed point, not a fixed precision.

Update: I can add comments now but there is not enough space to put this one into the comment area.

link|flag
vote up 0 vote down

What about MMX/SSE/SSE2?

i think it will help... so... decimal is 128bit datatype and SSE2 is 128bit too... and it can add, sub, div, mul decimal in 1 CPU tick...

you can write DLL for SSE2 using VC++ and then use that DLL in your application

e.g //you can do something like this

VC++

#include <emmintrin.h>
#include <tmmintrin.h>

extern "C" DllExport __int32* sse2_add(__int32* arr1, __int32* arr2);

extern "C" DllExport __int32* sse2_add(__int32* arr1, __int32* arr2)
{
    __m128i mi1 = _mm_setr_epi32(arr1[0], arr1[1], arr1[2], arr1[3]);
    __m128i mi2 = _mm_setr_epi32(arr2[0], arr2[1], arr2[2], arr2[3]);

    __m128i mi3 = _mm_add_epi32(mi1, mi2);
    __int32 rarr[4] = { mi3.m128i_i32[0], mi3.m128i_i32[1], mi3.m128i_i32[2], mi3.m128i_i32[3] };
    return rarr;
}

C#

[DllImport("sse2.dll")]
private unsafe static extern int[] sse2_add(int[] arr1, int[] arr2);

public unsafe static decimal addDec(decimal d1, decimal d2)
{
    int[] arr1 = decimal.GetBits(d1);
    int[] arr2 = decimal.GetBits(d2);

    int[] resultArr = sse2_add(arr1, arr2);

    return new decimal(resultArr);
}
link|flag
vote up -1 vote down

I would not look to the Decimal datatype as the culprit of any performance problems. While there are minor optimizations that can be made to core .Net classes, I really doubt you are going to find anything that handles Decimal types better than that built into .Net.

Whenever I have performance issues, I immediatly look to:

  1. Loops - Am I falling into any classic Big(O) style problems?
  2. IO - Am I calling the file system or database in a non-optimized way? Am I making too many network round trips?
  3. DB Optimization - Have I run analysis of my SQL? Am I missing an indexes that could improve performance? Am I using SQL that could be optimized like a subquery, etc?
  4. Am I doing any expensive operations in code that could be optimized? For example, am I doing a lot of string concatenation, or moving between List and array, etc?
link|flag
Decimal vs double has a real performance difference. I created a app that does simple multiplication and division and ran it with tech numbers as decimals and as doubles. The double was 16 times faster than the decimal. – Ryan Cook Dec 14 '08 at 19:33
In my case, the difference was 40x-fold. – Dmitri Nesteruk Dec 29 '08 at 22:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.