Tagged Questions
10
votes
3answers
3k views
What is a good free (open source) BLAS/LAPACK library for .net (C#)?
I have a project written in C# where I need to do various linear algebraic operations on matrices (like LU-factorization).
Since the program is mainly a prototype created to confirm a theory, a C# ...
6
votes
0answers
268 views
Pre-compiled Windows OMF BLAS/LAPACK?
Is there anywhere I can get pre-compiled BLAS and LAPACK binaries for Windows in OMF object format? I want to link some D language code to these. I'm aware of where I can get the relevant libs in ...
6
votes
2answers
491 views
Mystified by qr.Q(): what is an orthonormal matrix in “compact” form?
R has a qr() function, which performs QR decomposition using either LINPACK or LAPACK (in my experience, the latter is 5% faster). The main object returned is a matrix "qr" that contains in the upper ...
4
votes
3answers
141 views
How to check blas/lapack linkage in numpy/scipy?
I am builing my numpy/scipy environment based on blas and lapack more or less based on this walk through.
When I am done, how can I check, that my numpy/scipy functions really do use the previously ...
3
votes
1answer
117 views
Lapack via Scheme
I am looking for a Scheme implementation with a reasonable BLAS and LAPACK interface package, i.e. one that supports the API subset decribted in Golub and Van Loan's "Matrix Computations". This would ...
3
votes
1answer
433 views
Lapack version on Mac LION
Lapack 3.2.1 is not fully theard safe right...but 3.3 is which is recently being released by netlib with help of intel.
So do some one know whether or not Lapack 3.3 version would be shipped with new ...
3
votes
1answer
382 views
Calling MATLAB's built-in LAPACK/BLAS routines
I want to learn how to call the built-in LAPACK/BLAS routines in MATLAB. I have experience in MATLAB and mex files but I've actually no idea how to call LAPACK or BLAS libraries. I've found the ...
3
votes
2answers
2k views
Bignum, Linear Algebra and Digital Signal Processing on iPhone OS (iOS 4)
I think I've found some gems in the iPhone OS (iOS 4).
I found that there're 128-bit, 256-bit, 512-bit and 1024-bit integer data types, provided by the Accelerate Framework. There're also Apple's ...
2
votes
1answer
85 views
Difference between dtrtrs and dtrsm
I am looking for some triangular solvers, and I have come across two solvers. One in BLAS: dtrsm and another in LAPACK: dtrtrs. From the looks of it both seem to have common functionality, with dtrsm ...
2
votes
1answer
219 views
Detect BLAS/LAPACK vendors using CMake
So my code wants to include different header files when occurs to different BLAS/LAPACK vendors. Are there any predefined macros or something like that make me check it?
2
votes
1answer
471 views
LAPACK on Visual C/C++ 2010
I want to use LAPACK and BLAS in Visual C/C++ 2010 (add LAPACK and BLAS libs to Visual C/C++ 2010), so I was reading a very similar question here (The same but with visual C/C++ 2008),He claims he ...
2
votes
1answer
558 views
How to compute SVD (Singular Value Decomposition) of upper triangular matrix
Do you know an algorithm that calculates SVD using BLAS or LAPACK?
Lets say I have a symmetric Matrix A:
1 22 13 14
22 1 45 24
13 ...
2
votes
2answers
197 views
What does BLAS DGEMV error code -6 mean?
I have a program that runs through R but uses the BLAS routines. It runs through correctly about 8 times but then throws an error:
BLAS/LAPACK routine 'DGEMV ' gave error code -6
What does this ...
1
vote
0answers
27 views
Multithreading with LAPACK 3.3 & above on MacOS 10.6 and 10.7
I am trying to build and run a multi-thread program using openMP on MAC 10.6 and MAC 10.7
the program calls
zgelss and zgemm from multiple thread
I have compiled the LAPACK 3.4 and refBLAS
I ...
1
vote
2answers
89 views
BLAS equivalent of a LAPACK function for GPUs
In LAPACK there is this function for diagonalization
SUBROUTINE DSPGVX( ITYPE, JOBZ, RANGE, UPLO, N, AP, BP, VL, VU,
$ IL, IU, ABSTOL, M, W, Z, LDZ, WORK, IWORK,
$ ...
1
vote
1answer
170 views
Using BLAS or LAPACK with Xcode
I'm looking for a good guide on how to incorporate BLAS or LAPACK functions into my Objective C Program developed through Xcode. The only sources I can find online of programs in BLAS/LAPACK are ...
1
vote
1answer
566 views
Using ATLAS/Lapack from macports in a typical fortran program
I am trying to write a simple differental equation solver in mpi and fortran. I figured I may as well get familiar with using ATLAS/LAPACK/BLAS routines as they seem quite useful for any future ...
1
vote
2answers
618 views
Linking LAPACK/BLAS libraries
Background:
I am working on a project written in a mix of C and Fortran 77 and now need to link the LAPACK/BLAS libraries to the project (all in a Linux environment). The LAPACK in question is version ...
0
votes
1answer
76 views
Armadillo + BLAS + LAPACK: Linking error?
When I try to compile example1.cpp that comes with Armadillo 2.4.2, I keep getting the following linking error:
/tmp/ccbnLbA0.o: In function `double arma::blas::dot<double>(unsigned int, double ...
0
votes
1answer
74 views
How should I call a Fortran function?
How should I call a Fortran function?
I am trying to call DLANSY but it erroneously returns 0. See the code and the program output below.
SUBROUTINE ...
0
votes
0answers
78 views
How can I use CLAPACK,BLAS or LAPACK in a mex file?
I am having trouble writing a MEX file in MATLAB that can perform a simple linear operation such as taking the inverse of a matrix. I have successfully managed to take the inverse of a matrix using ...
0
votes
1answer
65 views
memory leak in dgemm_
I am currently working on an application which involves lots and lots of calls to blas routines. Routinely checking for memory leaks I discovered, that I am loosing bytes in a dgemm call. The call ...
0
votes
0answers
56 views
How to install ACML in Ubuntu natty 32 bit [closed]
I have downloaded the acml-4-4-0-gfortran-32bit.tgz but when I decompress it and run the install-acml-4-4-0-gfortran-32bit.sh as it is written in the README, after I enter the "accept" and then the ...
0
votes
1answer
144 views
Statically linking against LAPACK
I'm attempting to do a release of some software and am currently working through a script for the build process. I'm stuck on something I never thought I would be, statically linking LAPACK on x86_64 ...
0
votes
1answer
410 views
Visual C++ 2010 and Lapack, Blas libraries
I want to use Blas and Lapack libraries to use some rutines, however I do not know how to use them in Visual C++ 2010.
How to use them in this context?
0
votes
1answer
115 views
Disjoint grids on processor subsets and their communication in Scalapack
In summary, my question is about how to implement a matrix copy between two block-cyclically distributed matrices on two different process grids in Scalapack (BLACS). I'm attempting to implement this ...
0
votes
3answers
444 views
LAPACK/BLAS versus simple “for” loops
I want to migrate a piece of code that involves a number of vector and matrix calculations to C or C++, and the objective is to basically speed up the code as much as possible.
My question is that ...
0
votes
0answers
405 views
Installing C++ Armadillo library on Mac OS X
I am trying to use the C++ armadillo library (armadillo-0.9.10) on a Mac Pro. I follow the manual installation instruction in the README.txt file. I have modified the config.hpp file to indicate ...
-2
votes
0answers
41 views
Computing the inverse of a matrix by using BLAS or LAPACK in Objective-C? [closed]
RT, which function can deal with it from the cblas.h or clapack.h and what's the type of the input matrix and output result?
could be a (double) matrix[m][n] or (double) matrix[m*n]