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...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 1340 - 1369 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1340
Hi, Suppose I have a number of sparse matrices with the same sparsity pattern. Is there an easy way to share the pattern data among these matrices without...
Karl Meerbergen
Karl.Meerbergen@...
Send Email
Jan 20, 2004
8:26 am
1341
Hi, could anyone explain me the difference between sparse_matrix.filled() and sparse_matrix.non_zeros()? I'm using ublas::generalized_vector_of_vector< double,...
ralfdenzer
Offline Send Email
Jan 20, 2004
11:28 am
1342
Hi Karl, ... This seems to be a farily common requirement. I think I am correct in saying there is no direct support in uBLAS. It may be possible to reuse a...
Michael Stevens
mmssau
Offline Send Email
Jan 20, 2004
1:26 pm
1343
... filled() returns the number of used non zeros. non_zeros() returns the number of allocated (memory for) non zeros. That means filled() <= non_zeros() and...
Gunter Winkler
guwi17@...
Send Email
Jan 21, 2004
8:26 am
1344
... Gunter, do you know if this also applies to compressed matrices? Thanks...
Paul C. Leopardi
pcleopardi
Offline Send Email
Jan 21, 2004
12:19 pm
1345
Dear Karl, ... In my application I have the same problem. What I did, is to create my own matrix class which contails a list of pointers to matrices and an...
Peter Schmitteckert
buckelrunter
Offline Send Email
Jan 21, 2004
12:59 pm
1346
... AFAIK, yes. I cannot look at the code right now. But I am fairly sure. It has the same meaning for all sparse matrix types. (See .insert(i,j,value) for ...
Gunter Winkler
guwi17@...
Send Email
Jan 21, 2004
3:23 pm
1347
... sure. It has ... .insert(i,j,value) for ... Yes, definitely. My example uses compressed_matrix and as Gunter explained M.filled() <= M.non_zeros() for M...
ralfdenzer
Offline Send Email
Jan 21, 2004
4:05 pm
1348
hi. can anyone explain me how to use the "noalias" assignment with ublas and where it is defined in the source code? I've not been able to find it... thank...
lbolla@...
lolloxxx
Offline Send Email
Jan 22, 2004
6:32 pm
1349
... ublas::vector<double> vec = ...; // reset vec ublas::noalias(vec) = get_vec(); ... In the boost cvs version, it is to be found in ...
Angus Leeming
r73ue8_u1
Offline Send Email
Jan 22, 2004
7:00 pm
1350
... Lorenzo, If you need something that works on all version of uBLAS then you can also use the older assign member functions thus: a.assign (b); Michael...
Michael Stevens
mmssau
Offline Send Email
Jan 23, 2004
5:51 pm
1351
Hello guys, I was playing with the promote_traits meta-function of uBlas. Congratulations, nice job and well written. However, I had some problems when I tried...
alexismajordomo
Offline Send Email
Jan 29, 2004
12:03 am
1352
Ok, found the answer myself :) It's because the boost::mpl library defines by default a maximum size of 10 for a meta-vector. In order to overcome this...
Alexis
alexismajordomo
Offline Send Email
Feb 2, 2004
10:47 am
1353
hi! I've got a newbie's question. Is there and operator I can use to do: a = b * c; with a, b and c vectors (instead of writing my own for cycle, of course!)? ...
lbolla@...
lolloxxx
Offline Send Email
Feb 3, 2004
12:10 am
1354
Hello Lorenzo, Recent versions of uBLAS have the function element_prod (v1, v2) which compute (v1 * v2) [i] = v1 [i] * v2 [i]. These should work as you expect...
Michael Stevens
mmssau
Offline Send Email
Feb 3, 2004
7:49 am
1355
Hi, I tried to multiply two vectors storing elements of different types (floating point numbers of different precisions). Is there are way to specify the...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Feb 5, 2004
2:40 pm
1356
There should be a "filled()" function for all the vector-like types (sparse_vector, vector, matrix_row, matrix_column... ) Currently, only compressed_vector...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Feb 5, 2004
6:18 pm
1357
The inner_prod function is slow for the sparse vector types. As I reported before for sparse matrices ( http://groups.yahoo.com/group/ublas-dev/message/1317 ),...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Feb 5, 2004
6:35 pm
1358
Hello, The benchmark N2 "release" version executable for the latest version of the uBLAS library (shipped with boost-1.31.0) freezes during execution after...
a_balmashnov
Offline Send Email
Feb 9, 2004
1:38 pm
1359
Something is wrong with the following expression v3.assign(-(v1+v2)); in bench_my_vector_add::operator() (int, fast_tag) const; If I put std::cout << i <<...
a_balmashnov
Offline Send Email
Feb 9, 2004
1:50 pm
1360
... The dead slow runtime for a debug build is normal. (Tested with gcc on my slow machine). Problem release build looks to be a VC++6.0 specific. Can anyone...
Michael Stevens
mmssau
Offline Send Email
Feb 9, 2004
2:53 pm
1361
... on my slow ... I know that this is normal... ;) ... will ... I've tried few sings. Here they are: //v3.assign(-v1); // no problem //v3.assign (v1 + v2); //...
a_balmashnov
Offline Send Email
Feb 10, 2004
8:08 am
1362
Hi, ... I just got some time to look into this. My method was to trace a debug build (under gcc) and to look which algorithm is active. Test code is simply. ...
Michael Stevens
mmssau
Offline Send Email
Feb 10, 2004
11:47 am
1363
... This would certainly make the proxy types more powerful as wrappers for sparse types. However I am not sure if this is a good idea in general. I say this ...
Michael Stevens
mmssau
Offline Send Email
Feb 10, 2004
6:47 pm
1364
Hi again, I'm working through as many issues as I can today! ... uBLAS has a general type promotion mechanism. It chooses the result of a uBLAS expression to...
Michael Stevens
mmssau
Offline Send Email
Feb 10, 2004
7:53 pm
1365
Dear All, I am just about to commit to the uBLAS CVS (no the Boost CVS) my first major change to the uBLAS code. Previously sprase_vector/matrix use map_array...
Michael Stevens
mmssau
Offline Send Email
Feb 11, 2004
10:21 am
1366
The function you mentioned is called correctly. I looked a little bit deeper into the problem and found that just calling inner_prod takes a long time. There...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Feb 12, 2004
4:17 pm
1367
Hi, ... That's good. ... That is bad. From my own testing VC7 generally does a a good job at optimising uBLAS's inner loops. ... Now I am a little confused!...
Michael Stevens
mmssau
Offline Send Email
Feb 13, 2004
8:37 am
1368
So what exactly is matrix_vector_range doing? Looking at the documentation tells me pretty much exactly nothing. I wanted to use it to get part of a matrix...
grinningguppi
Offline Send Email
Feb 19, 2004
10:38 pm
1369
... matrix_vector_range is an internal object which should not be used directly. Thus the documentation is a little sparse. There is a project() operator to...
Gunter Winkler
guwi17@...
Send Email
Feb 20, 2004
7:33 am
Messages 1340 - 1369 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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