I have been using the Intel Visual Fortran Composer XE 2011 on my project and I found something weird recently. When I run the code in the debugging window, it produces perfect result; however, if the executable is moved to a different location and perform a standalone calculation (meaning not through the IDE) there, the result is totally off. I'm sure this is caused by the MKL because:
Intel® Math Kernel Library
Normal random numbers
vsRngGaussian( method, stream, n, r, a, sigma ) using stream from VSL_BRNG_SFMT19937 random generator.
Three options for method:
VSL_RNG_METHOD_GAUSSIAN_BOXMULLER
VSL_RNG_METHOD_GAUSSIAN_BOXMULLER2
VSL_RNG_METHOD_GAUSSIAN_ICDF
How they differ in precision and speed?
VSL questions
Hi, I am using MKL 11.0 update 3 on Windows 7,core i7 machine.
1. Invalid correlation matrix ?
#define N 2
#define DIM 2
void Test()
{
VSLSSTaskPtr task; MKL_INT dim = DIM, n=N;
MKL_INT x_storage=VSL_SS_MATRIX_STORAGE_COLS;
MKL_INT cov_storage=VSL_SS_MATRIX_STORAGE_FULL,cor_storage=VSL_SS_MATRIX_STORAGE_FULL;
double x[N][DIM],mean[DIM], cov[DIM][DIM], cor[DIM][DIM];
double raw2[DIM], raw3[DIM], raw4[DIM],cen2[DIM], cen3[DIM], cen4[DIM];
int i, j, errcode; unsigned MKL_INT64 estimate = 0;
MKL 11 license validity when linking with MKL libraries
Hi
I would like to know what happens when the trial license expires and I am still trying to link and execute programs with MKL libraries (mkl_rt.dll). Is this still possible after license expiration ? Are there limitations ?
regards
Bogdan
Pardiso unable to solve a symmetric matrix
Hello MKL tech support,
I have a positive definite matrix and using Pardiso to solve the problem. I kept receiving the error -4 for the solver. It is interative refinement problem in phase 33.
My params for pardiso are:
iparm[7] = 15;
iparm[10] = 0;
iparm[12] = 0;
iparm[0] = 1;
iparm[1] = 0;
iparm[3] = 0;
iparm[4] = 0;
iparm[5] = 0;
iparm[6] = 0;
iparm[9] = 13;
iparm[11] = 0;
iparm[13] = 0;
How to create fftw3xc_ms.lib
Hello
In manual, to use fftw,
I want to make fftw3xc_ms.lib using makefile
but i don's know how to create fftw3xc_ms.llib....
Now I'm using a Visual Studio 2010.
Are there any nmake command?
How can i create fftw3xc_ms.lib?
I need your help.
regards
How to create fftw3xc_ms.lib
Hello
In manual, to use fftw,
I want to make fftw3xc_ms.lib using makefile
but i don's know how to create fftw3xc_ms.llib....
Now I'm using a Visual Studio 2010.
Are there any nmake command?
How can i create fftw3xc_ms.lib?
I need your help.
regards
vectorization (and parallelization?) in a single open mp thread
Hi everyone,
I'm a new MKL user and i would like to know if BLAS routines and VML functions are vectorized?
Missing rfftw function
Hi !
I am steadily progressing in my quest to convert from a gcc to an icc (and MKL) based build of my code. The reason for the shift is to be able to run my code on the Xeon Phi.
I have managed to get the thing to compile. However, when I run the code, I get an error:
fftw_die: rfftw() is not implemented because MKL DFTI doesn't support half-complex data layout
parallel / multi-threaded ILUT and FGMRES
Hi,
I'd like to learn if there is multi-threaded and/or parallel (mpi) support for ILUT/FGMRES in intel MKL and/or intel MKL cluster edition. I have read in a few posts that this solver might not be available in parallel for some previous versions, I want to know whether it is available in the latest versions of MKL, and what versions if any support this solver in parallel.
Thank you
