ippsMax/Min_64f producing odd values when NaN is included[Forums] I have a vector that looks like this:1, 1.5, 2.0, Inf, -Inf, NaNI'd expect ippsMax_64f and ippsMin_64f to both return NaN but Max returns 2.0 (!) and Min returns -Inf (which at least makes sense)Is...
NaN values in INTEL Fortran Example Using RCI FGMRES Solver with mkl-10.1[Forums] Hi there, I am trying to get the hang of the one of the MKL Iterative solvers: RCI FGMRES and I haven't been able to generate correct results of the INTEL's own example which is on page :http://www.intel.com/software/products/mkl/docs/WebHelp/appendices/mkl_appC_ISS.html#mkl_appC_ISSunder...
Another problem with OpenMP[Forums] I have a code which reads
!$omp parallel if ( enableOpenMP ) num_threads ( threads ) default ( shared )!$omp& firstprivate ( i, im1, ip1, istep, i1, i2,!$omp& j, jm1, jp1, jstep, j1,...
Detection of NaN in IPPS functions[Forums] I'm doing a division on some 32f values that could have zeros in both operands. This will result in a NaN. Now, I'd like to change all the NaNs to zeros, but I don't see how to do it without an not...