I'm currently developing a C-module for a Java-application that needs some performance improvements (see Improving performance of network coding-encoding for a background). I've tried to optimize the code using SSE-intrinsics and it executes somewhat faster than the Java-version (~20%). However, it's still not fast enough.

Unfortunately my experience with optimizing C-code is somewhat limited. I therefore would love to get some ideas on how to improve the current implementation.

The inner loop that constitutes the hot-spot looks like this:

for (i = 0; i < numberOfGFVectorsInFragment; i++)   {

        // Load the 4 GF-elements from the message-fragment and add the log of the coefficeint to them.
        __m128i currentMessageFragmentVector = _mm_load_si128 (currentMessageFragmentPtr);
        __m128i currentEncodedResult = _mm_load_si128(encodedFragmentResultArray);

        __m128i logSumVector = _mm_add_epi32(coefficientLogValueVector, currentMessageFragmentVector);

        int* logSumArray = (int*)(&logSumVector);
        int messageMultipliedByCoefficient1 = expTable[*(logSumArray++)];
        int messageMultipliedByCoefficient2 = expTable[*(logSumArray++)];
        int messageMultipliedByCoefficient3 = expTable[*(logSumArray++)];
        int messageMultipliedByCoefficient4 = expTable[*(logSumArray)];

        __m128i valuesToXor = _mm_set_epi32 (messageMultipliedByCoefficient4, messageMultipliedByCoefficient3, messageMultipliedByCoefficient2, messageMultipliedByCoefficient1);
        __m128i updatedResultVector = _mm_xor_si128(currentEncodedResult, valuesToXor);
        _mm_store_si128(encodedFragmentResultArray, updatedResultVector);

        encodedFragmentResultArray++;
        currentMessageFragmentPtr++;
    }

I've attached screenshot from VTune. However, my guess is that the data is not completely reliable because of the compiler's optimization (the mapping between assembly and source is probably not perfect). I should also add that I've tried to solve this using OpenCL instead but the drivers from Intel and NVidia were so buggy that I had to give up on that (see OpenCL distribution).

VTune-screenshot

Here's the dissassembly that Visual Studio creates:

int fragmentID;
const int numberOfGFVectorsInFragment = numberOfGFElementsInFragment / 4;
00511019  mov         eax,dword ptr [ebx+8]  
0051101C  cdq  
0051101D  and         edx,3  
00511020  push        esi  
    for(fragmentID = 0; fragmentID < totalFragmentsToEncode; fragmentID++)
00511021  mov         esi,dword ptr [ebx+24h]  
00511024  add         eax,edx  
00511026  sar         eax,2  
00511029  push        edi  
0051102A  mov         dword ptr [numberOfGFVectorsInFragment],eax  
0051102D  test        esi,esi  
0051102F  jle         encodeFragments+13Fh (51113Fh)  
    int fragmentID;
    const int numberOfGFVectorsInFragment = numberOfGFElementsInFragment / 4;
00511035  mov         edx,dword ptr [resultArray]  
00511038  mov         ecx,eax  
0051103A  shl         ecx,4  
0051103D  mov         dword ptr [ebp-38h],ecx  
00511040  mov         ecx,dword ptr [coefficientLogValues]  
00511043  mov         dword ptr [ebp-24h],ecx  
00511046  mov         ecx,eax  
00511048  neg         ecx  
0051104A  shl         ecx,4  
0051104D  mov         dword ptr [ebp-4Ch],ecx  
00511050  mov         ecx,dword ptr [logOfDataToEncode]  
00511053  sub         ecx,edx  
00511055  mov         dword ptr [ebp-28h],edx  
00511058  mov         edx,dword ptr [expTable]  
0051105B  mov         dword ptr [ebp-34h],ecx  
0051105E  mov         dword ptr [ebp-3Ch],esi  
00511061  mov         edi,dword ptr [messageFragmentsPerDataBlock]  
        messageFragmentEnd = numberOfGFVectorsInFragment;
00511064  mov         dword ptr [messageFragmentEnd],eax  
        coefficientIndex = fragmentID * messageFragmentsPerDataBlock;

        // Set the start of the result-array to the position of the current fragment we are about to encode.
        resultArrayIndexStart = fragmentID * numberOfGFVectorsInFragment;
        for (messageFragmentIndex = 0; messageFragmentIndex < messageFragmentsPerDataBlock; messageFragmentIndex++)
00511067  test        edi,edi  
00511069  jle         encodeFragments+120h (511120h)  
    {
        int messageFragmentStart, messageFragmentEnd, coefficientIndex, resultArrayIndexStart, messageFragmentIndex;

        messageFragmentStart = 0;
0051106F  mov         esi,dword ptr [ebp-24h]  
00511072  mov         dword ptr [ebp-20h],ecx  
00511075  mov         dword ptr [ebp-30h],edi  
        {
            int coefficientLogValue = coefficientLogValues[coefficientIndex++];
00511078  mov         ecx,dword ptr [esi]  
0051107A  add         esi,4  
            // Create a vector containing the log of the current coefficient.
            __m128i coefficientLogValueVector = _mm_set1_epi32(coefficientLogValue);
0051107D  movd        xmm0,ecx  
            int messageFragmentIndex;

            // Make sure we set the pointers to point to the start of the encoded fragment and at the start of the current
            // message-fragment to add to the linear combination.
            __m128i* encodedFragmentResultArray = &resultArray[resultArrayIndexStart];                  
00511081  mov         ecx,dword ptr [ebp-28h]  
00511084  mov         dword ptr [ebp-48h],esi  
00511087  pshufd      xmm0,xmm0,0  
            __m128i* currentMessageFragmentPtr = &logOfDataToEncode[messageFragmentStart];

            int i;
            for (i = 0; i < numberOfGFVectorsInFragment; i++)
0051108C  test        eax,eax  
0051108E  jle         encodeFragments+0FDh (5110FDh)  
        {
            int coefficientLogValue = coefficientLogValues[coefficientIndex++];
00511090  mov         dword ptr [ebp-2Ch],eax  
            {
                // Load the 4 GF-elements from the message-fragment and add the log of the coefficeint to them.
                __m128i currentMessageFragmentVector = _mm_load_si128 (currentMessageFragmentPtr);
00511093  mov         eax,dword ptr [ebp-20h]  
00511096  movdqa      xmm2,xmmword ptr [eax+ecx]  
                __m128i currentEncodedResult = _mm_load_si128(encodedFragmentResultArray);

                __m128i logSumVector = _mm_add_epi32(coefficientLogValueVector, currentMessageFragmentVector);
0051109B  movdqa      xmm1,xmm0  
0051109F  paddd       xmm1,xmm2  
005110A3  movdqa      xmmword ptr [logSumVector],xmm1  

                int* logSumArray = (int*)(&logSumVector);
                int messageMultipliedByCoefficient1 = expTable[*(logSumArray++)];
005110A8  mov         eax,dword ptr [logSumVector]  
005110AB  mov         esi,dword ptr [edx+eax*4]  
                int messageMultipliedByCoefficient2 = expTable[*(logSumArray++)];
005110AE  mov         eax,dword ptr [ebp-5Ch]  
005110B1  mov         eax,dword ptr [edx+eax*4]  
                int messageMultipliedByCoefficient3 = expTable[*(logSumArray++)];
                int messageMultipliedByCoefficient4 = expTable[*(logSumArray)];

                __m128i valuesToXor = _mm_set_epi32 (messageMultipliedByCoefficient4, messageMultipliedByCoefficient3, messageMultipliedByCoefficient2, messageMultipliedByCoefficient1);
005110B4  mov         edi,dword ptr [ebp-58h]  
005110B7  mov         edi,dword ptr [edx+edi*4]  
005110BA  movdqa      xmm1,xmmword ptr [ecx]  
005110BE  mov         dword ptr [messageMultipliedByCoefficient2],eax  
005110C1  mov         eax,dword ptr [ebp-54h]  
005110C4  mov         eax,dword ptr [edx+eax*4]  
005110C7  movd        xmm2,eax  
005110CB  mov         eax,dword ptr [messageMultipliedByCoefficient2]  
005110CE  movd        xmm3,edi  
005110D2  movd        xmm4,eax  
005110D6  movd        xmm5,esi  
                __m128i updatedResultVector = _mm_xor_si128(currentEncodedResult, valuesToXor);
                _mm_store_si128(encodedFragmentResultArray, updatedResultVector);

                encodedFragmentResultArray++;
005110DA  add         ecx,10h  
005110DD  dec         dword ptr [ebp-2Ch]  
005110E0  punpckldq   xmm4,xmm2  
005110E4  punpckldq   xmm5,xmm3  
005110E8  punpckldq   xmm5,xmm4  
005110EC  pxor        xmm1,xmm5  
005110F0  movdqa      xmmword ptr [ecx-10h],xmm1  
005110F5  jne         encodeFragments+93h (511093h)  
            __m128i* currentMessageFragmentPtr = &logOfDataToEncode[messageFragmentStart];

            int i;
            for (i = 0; i < numberOfGFVectorsInFragment; i++)
005110F7  mov         eax,dword ptr [numberOfGFVectorsInFragment]  
005110FA  mov         esi,dword ptr [ebp-48h]  
                currentMessageFragmentPtr++;
            }

            messageFragmentStart = messageFragmentStart + numberOfGFVectorsInFragment;
005110FD  mov         ecx,dword ptr [ebp-38h]  
00511100  add         dword ptr [ebp-20h],ecx  
            messageFragmentEnd = messageFragmentEnd + numberOfGFVectorsInFragment;
00511103  add         dword ptr [messageFragmentEnd],eax  
            if(messageFragmentEnd > maxTotalLength)
00511106  mov         ecx,dword ptr [maxTotalLength]  
00511109  cmp         dword ptr [messageFragmentEnd],ecx  
0051110C  jle         encodeFragments+111h (511111h)  
            {
                messageFragmentEnd = maxTotalLength;
0051110E  mov         dword ptr [messageFragmentEnd],ecx  
        coefficientIndex = fragmentID * messageFragmentsPerDataBlock;

        // Set the start of the result-array to the position of the current fragment we are about to encode.
        resultArrayIndexStart = fragmentID * numberOfGFVectorsInFragment;
        for (messageFragmentIndex = 0; messageFragmentIndex < messageFragmentsPerDataBlock; messageFragmentIndex++)
00511111  dec         dword ptr [ebp-30h]  
00511114  jne         encodeFragments+78h (511078h)  
0051111A  mov         edi,dword ptr [messageFragmentsPerDataBlock]  
0051111D  mov         ecx,dword ptr [ebp-34h]  
    for(fragmentID = 0; fragmentID < totalFragmentsToEncode; fragmentID++)
00511120  add         ecx,dword ptr [ebp-4Ch]  
00511123  lea         esi,[edi*4]  
0051112A  add         dword ptr [ebp-24h],esi  
0051112D  mov         esi,dword ptr [ebp-38h]  
00511130  add         dword ptr [ebp-28h],esi  
00511133  dec         dword ptr [ebp-3Ch]  
00511136  mov         dword ptr [ebp-34h],ecx  
00511139  jne         encodeFragments+61h (511061h)  
            }
        }

    }
}
link|improve this question

2  
Have you looked at the assembly the compiler is producing? There will probably be some further gains to be made there. If you can't make the compiler perform them, do it manually and use the (well commented) .s as your source file rather than the .c – OrangeDog Oct 17 '11 at 14:12
Does somewhat kill the "portability" aspect of Java though. – OrangeDog Oct 17 '11 at 14:14
@OrangeDog I've now added the assembly to the question. – Yrlec Oct 17 '11 at 18:02
Did you have any compiler optimisations on at all when you generated that assembly? – OrangeDog Oct 17 '11 at 19:21
@OrangeDog yup. I used the following build flags: cl /c /Zi /nologo- /Wall /WX- /Ox /Ob2 /Oi /Ot /Oy- /D WIN32 /D NDEBUG /D _WINDLL /D _UNICODE /D UNICODE /Gm- /EHsc /MD /GS /arch:SSE2 /fp:precise /Zc:wchar_t /Zc:forScope /Yc"StdAfx.h" /Fp"Release\NetworkCodingAccelerator.pch" /Fo"Release\\" /Fd"Release\vc100.pdb" /Gd /TC /analyze- /errorReport:prompt Stdafx.c Anything you think I should add? I'm a newbie when it comes to MSVC's compiler settings. – Yrlec Oct 17 '11 at 21:55
show 1 more comment
feedback

2 Answers

up vote 7 down vote accepted

Even without looking at the assembly, I can tell right away that the bottleneck is from the 4-element gather memory access and from the _mm_set_epi32 packing operations. Internally, _mm_set_epi32, in your case will probably be implemented as a series of unpacklo/hi instructions.

Most of the "work" in this loop is from packing these 4 memory accesses. In the absence of SSE4.1, I would go so far to say that the loop could be faster non-vectorized, but unrolled.

If you're willing to use SSE4.1, you can try this. It might be faster, it might not:

    int* logSumArray = (int*)(&logSumVector);

    __m128i valuesToXor = _mm_cvtsi32_si128(expTable[*(logSumArray++)]);
    valuesToXor = _mm_insert_epi32(valuesToXor, expTable[*(logSumArray++)], 1);
    valuesToXor = _mm_insert_epi32(valuesToXor, expTable[*(logSumArray++)], 2);
    valuesToXor = _mm_insert_epi32(valuesToXor, expTable[*(logSumArray++)], 3);

I suggest unrolling the loop at least 4 iterations and interleaving all the instructions to give this code any chance of performing well.

What you really need is Intel's AVX2 gather/scatter instructions. But that's a few years down the road...

link|improve this answer
Thanks, but your code yields the following error: Error C2275: '__m128i' : illegal use of this type as an expression. The error seems to be related to overwriting valuesToXor beceause if I remove the last three lines it compiles (the error message always points to the expression after the last line that set valuesToXor). – Yrlec Oct 17 '11 at 16:57
Did you include the SSE4.1 header <smmintrin.h>? – Mysticial Oct 17 '11 at 17:32
Yes, I did. Very strange. – Yrlec Oct 17 '11 at 17:46
Are you able to get _mm_insert_epi32 to work at all? – Mysticial Oct 17 '11 at 17:50
1  
@Mystical I've even seen the _mm_set_ functions implemented by msvc as 4 copies into temporary aligned memory and then loaded from memory into the register, and I could only shake my head when seeing this. – Christian Rau Oct 17 '11 at 17:54
show 8 more comments
feedback

Maybe try http://web.eecs.utk.edu/~plank/plank/papers/CS-07-593/. The functions with "region" in their names are supposedly fast. They don't seem to use any kind of special instruction sets, but maybe they've been optimized in other ways...

link|improve this answer
Thanks! They seem to employ many similar tricks as I did (like the double log-tables to avoid the extra modulo). However I'll check the region-code to see if they have some other optimizations as well. – Yrlec Oct 17 '11 at 21:57
After reading the docs I actually think that their code is slower. They achieve ~167 MB/s when multiplying and XOR-ing into a region. I achieve about 1GB/s for the same operation (I probably have a faster CPU but the difference is still quite big). The problem is that I'm doing that >1000/s so the actual output throughput is only ~1Mb/s. – Yrlec Oct 18 '11 at 7:28
feedback

Your Answer

 
or
required, but never shown

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