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 1352 - 1381 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
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
1370
Hello Gunter, ... The comments regarding the documentation are all true. In order to help develop uBLAS and to help out Joerg any contributions in this regard...
Michael Stevens
mmssau
Offline Send Email
Feb 20, 2004
5:45 pm
1371
... No, I don't mind. You can copy as much as you need. mfg Gunter...
Gunter Winkler
guwi17@...
Send Email
Feb 24, 2004
8:19 am
1372
Hi! I am working with sparse column oriented matrices, which are defined as shown below: generalized_vector_of_vector< float, column_major, ...
vital_vasilev
Offline Send Email
Feb 24, 2004
2:38 pm
1373
Hi all, This follows up "gitarrenschlumpf" posting on inner_prod algorithms. I have research a little further. ... Looking at the documentation for "Indexed ...
Michael Stevens
mmssau
Offline Send Email
Feb 24, 2004
6:25 pm
1374
Hi all, This is the second follow up to "gitarrenschlumpf" posting on inner_prod algorithms. ... worth ... I've tried to merge the good points of...
Michael Stevens by w...
mmssau
Offline Send Email
Feb 24, 2004
6:36 pm
1375
Hi all, This is the second follow up to "gitarrenschlumpf" posting on inner_prod algorithms. ... worth ... I've tried to merge the good points of...
Michael Stevens by w...
mmssau
Offline Send Email
Feb 24, 2004
7:13 pm
1376
Hi, ... OK, this was a missing optimization. I've recently added something like ... template<class I> BOOST_UBLAS_INLINE void increment (I &it, const I...
jhr.walter@...
jhrwalter
Offline Send Email
Feb 25, 2004
6:00 am
1377
Hi all! Function erase (size_type i, size_type j) in class genarelized_vector_of_vector in all last versions of ublas has error and can't be compiled. Function...
vital_vasilev
Offline Send Email
Feb 25, 2004
7:23 am
1378
... The fastest way is to write a custom function that copies some part of your input matrix to an output matrix, since deleting single (or multiple) elements ...
Gunter Winkler
guwi17@...
Send Email
Feb 25, 2004
8:45 am
1379
Ok, this works great. The three-ifs-idea is good. You could tweak it some more by removing the difference_type compare = index1 - index2; and comparing the...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Feb 25, 2004
11:44 am
1380
And one more: What about reverting the order of comparisons in the iterator == operators? Now it is: vector_sparse.hpp line 1186 BOOST_UBLAS_INLINE bool...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Feb 25, 2004
12:24 pm
1381
Hi gitarrenschlumpf, (not sure how to address you here!) ... I'm glad this is efficient. In particular it is good there is a efficient solution which doesn't...
Michael Stevens
mmssau
Offline Send Email
Feb 25, 2004
3:25 pm
Messages 1352 - 1381 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