Search the web
Sign In
New User? Sign Up
ublas-dev · uBLAS development
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

Best of Y! Groups

   Check them out and nominate your group.
Click here for the latest updates on Groups Message search

Messages

  Messages Help
Advanced
Messages 1573 - 1602 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1573
Hello, the attached test program does not compile with current ublas cvs (using gcc 3.3.1, see compile.log). It does compile with current boost cvs. It does...
Georg Baum
gbaumy
Offline Send Email
Jun 3, 2004
4:55 pm
1574
Hello Georg, Thanks for the report I can reproduce it on multiple compilers. I don't have a fix yet but I know when things wrong. The bug was introduced with...
Michael Stevens
mmssau
Offline Send Email
Jun 3, 2004
7:02 pm
1575
When a coordinate matrix is resized, filled_ is set to zero. Although the data are copied in the arrays index1_data_, index2_data_ and value_data_, they are no...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Jun 4, 2004
9:07 am
1576
... This looks like a bug. Resizing sparse matrices is a difficult problem. Thus the strategie was to clear the matrix when it is resized. For coordinate ...
Gunter Winkler
guwi17@...
Send Email
Jun 4, 2004
10:10 am
1577
... In the case where the matrix is cleared anyway (e.g. compressed_matrix) I suppose it does not make sense to have the preserve argument. At least it is very...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Jun 4, 2004
1:38 pm
1578
... Looks like multiple problems! The documentation for resize states that 'The content of the XX_matrix is preserved', in the case of all three gappy types....
Michael Stevens
mmssau
Offline Send Email
Jun 4, 2004
3:11 pm
1579
Gunter, Karl, ... Looking at coordinate_matrix does not seem to correctly implement a preserving resizing in all cases. The existing preserve will only work if...
Michael Stevens
mmssau
Offline Send Email
Jun 4, 2004
6:44 pm
1580
Can anyone recommend a fast way to do the following computation? I have three matrices, D, D^(-1/2), and W. D and D^(-1/2) are diagonal, and W is sparse and...
stevediverdi
Offline Send Email
Jun 5, 2004
10:24 pm
1581
Steve, I'm not quite sure what you mean by "fast" in "there isn't fast support for sparse-sparse matrix multiplication in uBLAS". GluCat ( http://glucat.sf.net...
Paul C. Leopardi
pcleopardi
Offline Send Email
Jun 6, 2004
12:21 am
1582
Steve, ... Is Paul's expression is the one we really want to compute? Am I missing something, but if W is symmetric and so is d then we can rearrange to = I -...
Michael Stevens
mmssau
Offline Send Email
Jun 6, 2004
6:48 pm
1583
Michael, Reply below. Best regards ... This would always work if diagonal matrices always commute with symmetric matrices. Unfortunately this is not the case....
Paul C. Leopardi
pcleopardi
Offline Send Email
Jun 6, 2004
10:11 pm
1584
Paul, ... Oh blast! Serves me right for doing a back of the envelope calculation. I used the standard symmetric matrix rule that A' * B' = (B * A)' I missed...
Michael Stevens
mmssau
Offline Send Email
Jun 7, 2004
7:37 am
1585
(Sorry my reply to this thread took so long) ... And I should have answered already a week ago: In case of 'gemm' it's easy to play with the transpose. With...
Toon Knapen
tknapen
Offline Send Email
Jun 10, 2004
11:19 am
1586
... I don't think anybody will disagree. But I'm afraid you will not hear an OK from Joerg I have not seen Joerg for a long time on the ml. I think Michael...
Toon Knapen
tknapen
Offline Send Email
Jun 10, 2004
11:46 am
1587
Hi Toon, ... I bypassed the mailing list and talked with Joerg by phone a couple of weeks ago. He still has lost of ideas regarding the future of uBLAS. And...
Michael Stevens
mmssau
Offline Send Email
Jun 10, 2004
1:18 pm
1588
... No, it should work for non-square matrices (modulo bugs ;). If C is row-major, then you can rewrite the product: C^T = (A * B)^T = B^T * A^T and now the...
Ian McCulloch
ianmcc@...
Send Email
Jun 10, 2004
1:38 pm
1589
Hi, Sorry, I have A correction: ... [...] ... Sorry, that doesn't make sense: I misread 'square' for 'rectangular' there. What dies it mean to have a...
Ian McCulloch
ianmcc@...
Send Email
Jun 11, 2004
2:10 pm
1590
... I never mentioned 'non-rectangular' IIRC? ... Of course, I overlooked that option. ... Indeed....
Toon Knapen
tknapen
Offline Send Email
Jun 14, 2004
11:45 am
1591
... Subject: Re: [Boost-users] [uBLAS] Compilation problem with VC 7.1 Date: Mon, 14 Jun 2004 14:14:51 +0200 From: Toon Knapen <toon.knapen@...> To:...
Toon Knapen
tknapen
Offline Send Email
Jun 14, 2004
12:24 pm
1592
To clarify, the example I posted earlier compiles but the type 'result_type' is not as expected. It is of type boost::mpl::void_ and thus declaring a variable...
Toon Knapen
tknapen
Offline Send Email
Jun 15, 2004
6:15 am
1593
1.) That means, changing in traits.hpp to #ifndef BOOST_NO_TEMPLATE_PARTIAL_SPECIALIZATION template<class T1, class T2> struct promote_traits { typedef...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Jun 15, 2004
7:08 am
1594
... Indeed, shall I apply the patch ?...
Toon Knapen
tknapen
Offline Send Email
Jun 15, 2004
11:39 am
1595
Hi, ... What about char and unsigned char ? Here is a small problem: the limit for the typelists in mpl is 10 as default value (do not know where to change ...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Jun 15, 2004
12:07 pm
1596
... Yes but it's kind of natural to use short's while char's are less natural. Another option would be not to use MPL but implement the promote_traits as...
Toon Knapen
tknapen
Offline Send Email
Jun 15, 2004
12:29 pm
1597
Currently UBLAS_TYPE_CHECK will automatically be defined when compiling in debug mode. However when UBLAS_TYPE_CHECK is defined, ublas is not portable to...
Toon Knapen
tknapen
Offline Send Email
Jun 16, 2004
8:40 am
1598
Since nobody objected, I just added support for BOOST_UBLAS_NO_TYPE_CHECK to the cvs....
Toon Knapen
tknapen
Offline Send Email
Jun 17, 2004
7:09 am
1599
Hello, ... OK, I just read a little bit in the standard and I think the solution adding the "short" and "unsigned short" is nearly correct. "4.5 Integral...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Jun 17, 2004
12:28 pm
1600
Hi Toon, ... Looks good. It is probably worth mentioning that the current uBLAS CVS (not Boost CVS) already has such a mechanism. Since your aim was to get...
Michael Stevens
mmssau
Offline Send Email
Jun 21, 2004
7:03 am
1601
Hi Patrick, Hi Toon, I just read through the whole of the thread "Compilation problem with VC 7.1]" with interest. ... Agreed. The existing mechanism using an...
Michael Stevens
mmssau
Offline Send Email
Jun 21, 2004
8:54 am
1602
Hi all, I have recently been experimenting with getting uBLAS to play nicely with some legacy code that uses simple C-arrays to represent vectors and matrices,...
Robbie Vogt
robbie_vogt
Offline Send Email
Jun 22, 2004
6:57 am
Messages 1573 - 1602 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2010 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help