Hi all,
I have some tests that are not running with valgrind, digging in to it
I was able
to isolate the culprit code. The following test case is able
to reproduce the error:

#include <ipps.h>
int main() {
  const int mySize = 1024;
  Ipp32f* myRealVector = ippsMalloc_32f(mySize);
  Ipp32f myResult = 0.0;
  ippsStdDev_32f(myRealVector,  mySize,
                         &myResult,  ippAlgHintFast);
}

the function ippsStdDev_32f is a function in the Intel IPP library.

I'm running my test on a RedHat 5.4 64bit

Let me know if you need other informations.

Regards
Gaetano Mendola

-- 
cpp-today.blogspot.com

------------------------------------------------------------------------------
Download Intel&#174; Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
_______________________________________________
Valgrind-users mailing list
Valgrind-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/valgrind-users

Reply via email to