vote up 0 vote down star

Allegedly inlining std::inner_product() does NOT get inlined with gcc compiler < gcc 4.1 compilers, per the following bug .

Hence I would like to implement my own version of inner_product. Are there existing implementation available?

Thanks

flag

1  
The link is broken. – mmyers Oct 20 at 17:15
Aghh, fixed it... – Andrei Oct 20 at 17:19
Am I missing something, or does the third message (mail-archive.com/gcc-bugs@gcc.gnu.org/…) say that this was patched? – mmyers Oct 20 at 17:21
it was fixed in 4.1X version. I am still on 3.4 :( ,hence in the need of my own implementation of std::inner_product. i am basically seeing the problem the guy had described, and cannot accept patches at this point. – Andrei Oct 20 at 17:24

2 Answers

vote up 1 vote down check

You just need to look in your C++ header files, find the definition, and redefine it with the "inline" keyword (possibly in your namespace). For example, looking at my headers:

template <class I1, class I2, class T> inline T inner_product(T1 first1, T1 last1, T2 first2, T init)
{
  for (; first != last; ++first1, ++first2) init = init + *first1 * *first2; return init;
}
link|flag
vote up 1 vote down

The obvious implementations would look something like this:

// warning: untested code:
template <class I1, class I2, class T>
T inline inner_product(I1 s1, I1 e1, I2 s2, T i) {
    while (s1!=e1) {
        i = i + ((*(s1)) * (*(s2)));
        ++(s1);
        ++(s2);
    }
    return i;
}

template <class I1, class I2, class T, class B1, class B2>
T inline inner_product(I1 s1, I1 e1, I2 s2, T i, B1 b1, B2 b2) {
    while (s1!=e1) {
        i=b1(i, b2(*(s1), *(s2)));
        ++(s1);
        ++(s2);
    }
    return i;
}

Using such short identifiers is probably questionable, but for code like this that lives in a header so its compiled a gazillion times, short identifiers save parsing time...

link|flag

Your Answer

Get an OpenID
or

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