Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

7
votes
2answers
457 views

C/C++ Matlab compiler vs MKL

Is there a significant performance difference between Matlab numerical routines exposed as a C/C++ dll through Matlab mcc versus equivalent routines found in Math Kernel Library? I'm particularly ...
5
votes
2answers
349 views

Fortran double precision program with a simple MKL BLAS routine

In trying to mix precision in a simple program - using both real and double - and use the ddot routine from BLAS, I'm coming up with incorrect output for the double precision piece. Here's the code: ...
4
votes
2answers
151 views

C/C++ library for lazy evaluation of SIMD/SSE expressions

Libraries such as intel-MKL or amd-ACML provide easier interface to SIMD operations on vectors, but I want to chain several functions together. Are there readily available libraries where I can ...
4
votes
3answers
226 views

Optimized Matrix Rotation - arbitrary angle about center of matrix

I'm trying to optimize the rotation of very large images, smallest is 4096x4096 or ~16 million pixels. Rotation is always about the center of image, and images are not necessarily always square but ...
2
votes
1answer
549 views

Eigenvalues and Eigenvectors Computation in Intel Math Kernel

Does any know what is the algorithm used for eigenvalues and eigenvectors computation in Intel Math Kernel library? From the link I can find is that it seems to use pdsyev algorithm, which uses QR ...
2
votes
5answers
2k views

High-performance Math library for .NET /C# and Java

We currently have a high-performance scientific application written in C++ that makes use of Intel Math Kernel Library. We are considering writing a benchmark application written in Java and .NET/C# ...
1
vote
0answers
57 views

Sum duplicate values when converting from COO to CSR sparse matrix format

How would one sum up duplicate values efficently when converting from COO format to CSR. Does something similar to scipy implementation (http://docs.scipy.org/doc/scipy-0.9.0/reference/sparse.html) ...
1
vote
1answer
113 views

memory alignment with mkl_malloc

This question might just show that I haven't understand something important in C: The Intel Math Kernel library provides a way to set the memory alignment when allocating memory. On the other hand I ...
1
vote
1answer
170 views

Unable to link Intel MKL

I'm unable to link my program correctly. I use the following command line, but get an error. g++ -I/home/blah/intel/composerxe/mkl/include dotProduct.cpp ...
1
vote
1answer
395 views

ATLAS Linear algebra and openmpi on multicore with python

I use mpi4py and openmpi on a multi-cpu/core machine to do linear algebra. My numpy is built using ATLAS. Suppose I have a 4 core machine and I would like to run a 4 node python script that does ...
1
vote
2answers
390 views

Intel MKL memory management and exceptions

I am trying out Intel MKL and it appears that they have their own memory management (C-style). They suggest using their MKL_malloc/MKL_free pairs for vectors and matrices and I do not know what is a ...
0
votes
1answer
32 views

Calling a threaded function of the MKL from python: openmp library not found?

I am using the ctypes module to load the Intel MKL into python and then I'd like to call a routine that requires openmp parallelization (pardiso, in my case) I found this useful link on the Intel ...
0
votes
1answer
62 views

Name mangling and dumpbin

Yesterday I was helping a friend to compile Intel's MKL Java examples. We were having issues with "unresolved externals", even though everything seemed fine (accordingly to the example files / ...
0
votes
1answer
110 views

Can't link Intel Math Kernel Library to Xcode because there is no Intel_MKL.framework folder

I'm trying to use the Intel Math Kernel Library (MKL) on a 64-bit Mac running Mac OSX 10.6.6 and Xcode 3.2.6. For Macs, Intel MKL is only available by installing the full Intel Composer XE 2011 C++ ...
0
votes
1answer
46 views

intel MKL: what function used in MKL lib (only for C program) for solving Ax=lamda*Bx (eigen value)

guyz, I am looking forward for your help....thanks in advance Ax=lamda*Bx now how to find the value of lamda using MKL ?`
0
votes
0answers
99 views

using the -mveclibabi=svml option in gcc

I am trying to vectorize transcendental functions when gcc compiling Cython code. My institute has Intel MKL which is why I am gcc compiling with "-mveclibabi=svml". (It turns out to be rather hard ...
0
votes
1answer
26 views

using pointers to unsigned long integers instead of long long integers in c++

I want to pass a pointer of type unsigned integer * (also defined as std::size_t) to MKL function which expects it to be long long * , although both are 64 bit integers, I get type incompatibility ...
0
votes
0answers
93 views

How to specify Intel MKL sequential/parallel when using CMake?

I am using Intel MKL as BLAS/LAPACK library for my code and I hoped my code uses only 1 core instead of multiple cores. However, CMake's Find_Package routine can only locate MKL but does not allow me ...
0
votes
2answers
394 views

matrix-vector multiple vs. dgemm

I'm doing a large number of matrix-vector multiply's in my code. I found that my naive implementation beats cblas_dgemm in MKL10. My own guess why this might be the case is dgemm does alpha*A *B + ...
0
votes
0answers
349 views

Math Kernel Library matrix multiply

I'm coding an real-time application in MKL that involves a large number of matrix-vector multiplications (> 1000) at each time-frame and all the matrices are dense. From a performance stand-point, ...
0
votes
1answer
151 views

Intel VML add is slow

I wrote this small subroutine that compares simple vector mathematical functions, performed either with a loop: f(i) = a(i) + b(i) or direct: f = a + b or using Intel MKL VML: vdAdd(n,a,b,f) ...