Tagged Questions

The Basic Linear Algebra Subprograms are a standard set of interfaces for low-level vector and matrix operations commonly used in computing.

learn more… | top users | synonyms

19
votes
4answers
651 views

Benchmarking (python vs. c++ using BLAS) and (numpy)

I would like to write a program that makes extensive use of BLAS and LAPACK linear algebra functionalities. Since performance is an issue I did some benchmarking and would like know, if the approach I ...
10
votes
3answers
739 views

multithreaded blas in python/numpy

I am trying to implement a large number of matrix-matrix multiplications in python. Initially, I assumed that numpy would use automatically my threaded blas libraries since I built it against those ...
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# ...
8
votes
2answers
312 views

What is the BigO of linear regression?

How large a system is it reasonable to attempt to do a linear regression on? Specifically: I have a system with ~300K sample points and ~1200 linear terms. Is this computationally feasible?
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 ...
5
votes
2answers
346 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
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
1answer
197 views

How to transpose a matrix in an optimal way using blas?

I'm doing some calculations, and doing some analysis on the forces and weakness of different BLAS implementations. however I have come across a problem. I'm testing cuBlas, doing linAlg on the GPU ...
4
votes
3answers
225 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 ...
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
39 views

Should I prefer stride one memory access for either reading or writing?

It's well known that accessing memory in a stride one fashion is best for performance. In situations where I must access one region of memory for reading, I must access another region for writing, ...
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
333 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
3answers
277 views

Initialize double array with nonzero values (blas)

I have allocated a big double vector, lets say with 100000 element. At some point in my code, I want to set all elements to a constant, nonzero value. How can I do this without using a for loop over ...
3
votes
2answers
830 views

iOS 4 Accelerate Cblas with 4x4 matrices

I’ve been looking into the Accelerate framework that was made available in iOS 4. Specifically, I made some attempts to use the Cblas routines in my linear algebra library in C. Now I can’t get the ...
3
votes
1answer
451 views

Transpose in BLAS or do it myself first?

I'm putting together some scientific code in Fortran 77, and I am having a debate on what would be faster. Basically, I have an MxN matrix, let's call it A. M is larger than N. Later on in 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 ...
3
votes
1answer
713 views

BLAS and CUBLAS

I'm wondering about Nvidia's CUBLAS Library. Does anybody have experience with it? For example if I write a C program using BLAS will I be able to replace the calls to BLAS with calls to CUBLAS? Or ...
3
votes
2answers
2k views

Prefetch for Intel Core 2 Duo

Has anyone had experience using prefetch instructions for the Core 2 Duo processor? I've been using the (standard?) prefetch set (prefetchnta, prefetcht1, etc) with success for a series of P4 ...
2
votes
2answers
124 views

Purpose of LDA argument in BLAS dgemm?

The Fortran reference implementation documentation states: * LDA - INTEGER. * On entry, LDA specifies the first dimension of A as declared * in the calling (sub) program. When ...
2
votes
2answers
107 views

Is it worth using a multithreaded blas implementation along with multiprocessing in Python?

Suppose I have a 16 core machine, and an embarrassingly parallel program. I use lots of numpy dot products and addition of numpy arrays, and if I did not use multiprocessing it would be a no-brainer: ...
2
votes
1answer
72 views

Multiplying real matrix with a complex vector using BLAS

How can I use Blas to multiply a real matrix with a complex vector ? When I use functions like ccsrgemv() I get type mismatch errors? error: argument of type "float *" is incompatible with parameter ...
2
votes
2answers
111 views

Applying Boost UBLAS blas-1 to Matrices

How do I apply level 1 blas on a boost::numeric::ublas matrix? For example I want to compute the maximum entry or the sum of all entries. Using norm_1 or norm_inf on a matrix gives no compiler error ...
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
2answers
164 views

BLAS: gemm vs. gemv

Why does BLAS have a gemm function for matrix-matrix multiplication and a separate gemv function for matrix-vector multiplication? Isn't matrix-vector multiplication just a special case of ...
2
votes
1answer
217 views

problem on multiplying a matrix and a vector with vecLib framework of Mac OS X 10.7

I just have started using vecLib framework to make a program doing intensive matrix-vector multiplications on Mac OS X 10.7. I made a simple program like this; multiply the matrix a with the vector x ...
2
votes
4answers
384 views

How to make sure the numpy BLAS libraries are available as dynamically-loadable libraries?

The theano installation documentation states, that theano will as a default use the BLAS libraries from numpy, if the "BLAS libraries are available as dynamically-loadable libraries". This seems not ...
2
votes
1answer
74 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 ...
2
votes
1answer
495 views

CMake and BLAS for a C program

I'm trying to use CMake to build a program relying on blas, I'm detecting blas using : include (${CMAKE_ROOT}/Modules/FindBLAS.cmake) The problem is, FindBLAS require a fortran compiler and ...
2
votes
1answer
820 views

How do I use the BLAS library provided by MATLAB?

I have noticed that MATLAB provides the BLAS and LAPACK headers among others: $ ls ${MATLAB_DIR}/extern/include/ blas.h engine.h lapack.h mat.h mclmcr.h mex.h ...
2
votes
1answer
214 views

Does Blitz++ use BLAS routines when it is possible and appropriate to

I know that Blitz++ gets its performance plus by extensive usage of expression templates and template metaprogramms. But at some point you can't get more out of your code by using these techniques - ...
2
votes
3answers
282 views

finding matrix through optimisation

I am looking for algorithm to solve the following problem : I have two sets of vectors, and I want to find the matrix that best approximate the transformation from the input vectors to the output ...
2
votes
1answer
853 views

BLAS Library Benchmark

Is there a benchmark that compares the different BLAS (Basic Linear Algebra Subprograms) libraries? I am especially interested in sparse matrix multiplication for single- and multi-core systems?
1
vote
1answer
140 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
0answers
101 views

GotoBLAS for Intel Architecture - Seeking Download Links, and Compilation Guide for Visual Studio 2008

Right now I'm compiling Eigen to use for linear algebra calculations within my application. However, I'd much prefer to use GotoBLAS Intel version for optimal performance. Is there a simple way to ...
1
vote
1answer
136 views

GSL blas routines slow in Visual Studio

I just installed GSL and BLAS on Visual Studio 2010 successfully using this guide: However the matrix multiplications using cblas are ridicously slow. A friend on Linux had the same problem. Instead ...
1
vote
1answer
181 views

BLAS/LAPACK routine for doing Gaussian elimination

I'm a new user of BLAS/Lapack, and I'm just wondering is there a routine which does Gaussian elimination or even Gaussian-Jordan elimination? I googled and looked at their documentations, but still ...
1
vote
1answer
83 views

Need a sparse matrix library

Is there a sparse matrix library that copies the functionality of dense BLAS? I'd want at least: efficient SYR and SYRK (rank-k update) with sparse input (and possibly dense output), option for ...
1
vote
1answer
166 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
132 views

GSL gsl_blas_sgemm matrix multiply highly inaccurate for n>140

Just to test a multiplied a 150x150 matrix of all ones by itself using the gsl_blas_sgemm function. I'm getting errors of up to 38. Why is it so inaccurate?
1
vote
0answers
126 views

Mixing memory-aligned and unaligned code

I recently compiled GotoBLAS2 (MacOSX 10.6) and linked it to my code, leading to all kind of wrong results. I ran everything through valgrind noticing some illegal reads from the GotoBLAS. When ...
1
vote
2answers
289 views

How does BLAS sgemm/dgemm work?

I am trying to make use of the function sgemm in BLAS using ctypes in python. Trying to solve C = A x B the following code works just fine: no_trans = c_char("n") m = c_int(number_of_rows_of_A) n = ...
1
vote
1answer
290 views

Where can I find BLAS example code (in Fortran)?

I have been searching for decent documentation on blas, and I have found some 315 pages of dense material that ctrl-f does not work on. It provides all the information regarding what input arguments ...
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 ...
1
vote
1answer
352 views

How to multiply matrix with its transpose using Oracle database and utl_nla

I'm going nuts with this issue. I can't get the result from the following multiplication: X^t * X X is an m * n matrix with m = 36 rows and n = 3 columns which is represented by an ...
1
vote
1answer
322 views

Any good documentation for the cblas interface?

Can someone recommend a good reference or tutorial for the cblas interface? Nothing comes up on google, all of the man pages I've found are for the fortran blas interface, and the pdf that came with ...

1 2