uBLAS "official link" to LAPACK is made through ATLAS. However, for Windows users, it is quite difficult to use ATLAS due to overly complex compilation ...
uLAPACK would be nice but impractical I would guess. LAPACK shouldn't require ATLAS but will require BLAS from somewhere. The alternative is to either makes a...
Salut, ... [...] ... in case someone is interested in writing a uLaPack, one should take a look at http://www.cs.utexas.edu/users/flame, especially the...
Hi Peter, I think you have misunderstood my point: I just want to have a wrapper around (C)Lapack methods that is compatible with uBLAS. I do not want at all...
Cool, the bindings package is just what I was looking for. Too bad it is not documentated in the uBLAS doc. I think doc. should be updated about that. By the...
Is there planned support for Toeplitz and Hankel matrices ? ... Jonathan de Halleux, Research Assistant Center for Systems Engineering and Applied Mechanics...
I was forgetting others: upper - Hessenberg ? ... Jonathan de Halleux, Research Assistant Center for Systems Engineering and Applied Mechanics (CESAME) ...
... bindings are in fact separate library, although uBLAS vectors and matrices are main `playground' (almost all examples use them). And ... well ... we are...
... yes but bindings comes with jam files... ... Jonathan de Halleux, Research Assistant Center for Systems Engineering and Applied Mechanics (CESAME) ...
... True. Those in `amos', `blas' and `traits' directories were written by Toon, and those in `atlas' and `lapack' by Joerg (Joerg sent them to me when he...
Hi Kresimir, hi Toon, ... I've just downloaded it and some of my earlier remarks regarding the BLAS bindings still seem to be valid: The correct benchmark...
... for ... But what if the values are different for the element at the same coordinates in the matrix ? This is kind of an ambiguous situation no. Adding the...
Cool, the bindings package is just what I was looking for. Too bad it is not documentated in the uBLAS doc. I think doc. should be updated about that. By the...
... Not really. When I want to acces the value A(i,j) the matrix must be sorted and packed before. So there is no ambiguous element anymore. ... This is not...
Gunter Winkler
guwi17@...
Jul 8, 2003 8:16 am
816
... situation no. ... OK but when sorting, what does the sorting do with the values associated at two identical coordinates ? From you remarks below I conclude...
... I ... Oh wait, a colleague of mine just pointed out to me that sorting a COO : nnz * log( nnz ) , and for a CSC it takes CSC : nnz * log( bandwith ) As...
Hello, after the troubles of index_triple_array with non-gcc compilers I tried the variant of first computing the permutation vector and then apply this...
Gunter Winkler
guwi17@...
Jul 10, 2003 5:54 pm
819
Hi Toon, ... Bandwidth isn't a parameter of the CRS/CCS format AFAIK. So (linear time) insertions could break this constraint IMHO. ... If one knows the...
Salut, I'd like to ask if recently something concerning NDEBUG was changed. I have a programm that takes ~7.3s compiled with icc-7.1 ~3.6s conpiled with...
Hi Joerg, I've been catching up on a bit on uBLAS today. I working on a new release of Bayes++ and want to make sure it keeps up with the current development...
Hello, the current implementation of resize() of the class sparse_matrix may fail if the new size is smaller than the old size. resize() just changes the...
Gunter Winkler
guwi17@...
Jul 15, 2003 8:40 pm
823
I'm having trouble with the ublas bindings with VC7 : Compilation error says: \numeric\bindings\traits\fortran.h(17): fatal error C1189: #error : do not know...
... In fortran.h change line 14 from #elif defined(__IBMCPP__) to #elif defined(__IBMCPP__) || defined(_MSC_VER) With this change LAPACK bindings should...
Ok, I've patched fortran.h but now I get linking errors (i'm compiling vc/ublas_gesv). Note that I have added ublas_win32.lib and lapack_win32.lib to the...
It finally worked... but I had to use CLAPACK. Here are the steps (2) to make bindings work with the VC family and CLAPACK: 1. patch fortran.h - #if...
Hi, We are working hard on a FEM implementation using uBlas and Atlas bindings, but currently our static solution takes around 30 seconds for a problem with a ...
... try adding #include <boost/numerik/ublas/config.hpp> or at-least the standard-definition of compressed matrix template<class T, class F = row_major,...