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
2answers
475 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
74 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 ...
4
votes
0answers
238 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 ...
3
votes
1answer
106 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
332 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
395 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 ...
2
votes
1answer
73 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
187 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
426 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
537 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
181 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
1answer
139 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
530 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 ...
0
votes
1answer
25 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
65 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
44 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
49 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
39 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
117 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
369 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
0answers
144 views
How to use Lapack or Blas in Dev-C++ or .NET
How to use Lapack in Dev-C++ 5.0 beta 9.2?
I am starting some code, but do not how to use these libraries.
also, if I use .NET (C++) what would be a good choice?
I saw Flexible Library for Efficient ...
0
votes
0answers
104 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
401 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
390 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 ...
0
votes
2answers
594 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 ...