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 1392 - 1421 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
1392
Dear Toon and Kresimir We are about to prepare the first release of our ALPS applications package for quantum lattice models (http://alps.comp-phys.org/). Some...
Matthias Troyer
matthiastroyer
Offline Send Email
Mar 2, 2004
8:28 am
1393
Hi Matthias, ... I don't have any objections. Regards, fres...
Kresimir Fresl
kyriales
Offline Send Email
Mar 2, 2004
8:39 am
1394
Thanks --Matthias...
Matthias Troyer
matthiastroyer
Offline Send Email
Mar 2, 2004
8:46 am
1395
I am currently working with a lot (~ 20) of matrices wich are relatively big (~ 2250x2250) because of the number of matrices, I must use sparse or compressed...
ssmmiicchhaauudd
ssmmiicchhaa...
Offline Send Email
Mar 2, 2004
4:21 pm
1396
For me, axpy_prod was the solution to a similar problem with many compressed_matrix*vector products - orders of magnitude in speed, and also the expected O(N)...
Julius Muschaweck
juliusmuscha...
Offline Send Email
Mar 2, 2004
5:05 pm
1397
I tried figuring this out by searching these forums but couldn't figure it out. I am new to this, so not much knowledge regarding all of this yet. Anyways, I...
es244@...
eelcoscholte
Offline Send Email
Mar 3, 2004
5:08 am
1398
... The syntax of axpy_prod is: #include "operation.hpp" axpy_prod( A, X, Y, clear); which computes: if (clear) { Y = A * X; } else { Y += A * X; } axpy_prod...
Gunter Winkler
guwi17@...
Send Email
Mar 3, 2004
10:27 am
1399
Thanks, that solved my problem, I went from 224 seconds(prec_prod) to 9 seconds(axpy_prod). Not to be rude or anything (your are all doing great work on...
ssmmiicchhaauudd
ssmmiicchhaa...
Offline Send Email
Mar 3, 2004
2:31 pm
1400
Dear All, I have committed a change to the Iterator Concepts documentation that fixes up the discrepancy between the documentation and the code/intent. This...
Michael Stevens
mmssau
Offline Send Email
Mar 3, 2004
3:18 pm
1401
Hi, Im currently using ublas as part of a software library im writing. The trouble is, whenever i pass a matrix, by reference or a pointer, from an executable...
Chandler Burgess
tucros3141
Online Now Send Email
Mar 3, 2004
7:53 pm
1402
Salut, ... At least at the times I was programming in windows (~3years ago) this was a limitation of Windows, at least I didn't find a way to realloc memory in...
Peter Schmitteckert
buckelrunter
Offline Send Email
Mar 3, 2004
7:59 pm
1403
... Sounds like the problem to me. The problem is how you are compiling and linking and not exclusive to uBLAS. You can test this by simply allocating some...
Michael Stevens
mmssau
Offline Send Email
Mar 3, 2004
9:40 pm
1404
Hi all, I am using uBlas inside a DLL. But it seems to depend really on the type of dll. I am using uBlas in pure C++ Code which is wrappred later with managed...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Mar 4, 2004
1:01 pm
1405
Salut, ... I don't know about VS 7, I stopped MS at VS 6. But you don't have too look for errors, it will just core-dump or SIGSEGV or something or something...
Peter Schmitteckert
buckelrunter
Offline Send Email
Mar 4, 2004
2:32 pm
1406
First of all I apologize for posting my previous question here. I didn't realize it was actually a DEV forum :) Secondly, thanks to someone who emailed me...
es244@...
eelcoscholte
Offline Send Email
Mar 5, 2004
12:48 am
1407
... Well, this is *mainly* dev forum, but user's questions are welcomed, too -- AFAIK there is no uBLAS users forum. So, feel free to ask your questions here. ...
Kresimir Fresl
kyriales
Offline Send Email
Mar 5, 2004
6:51 am
1408
Hello Eelco, ... I think your post was in the right place. ... I think here it is getting interessting. Which parts did you really use, did you used...
Patrick Kowalzick
patrick_kowa...
Offline Send Email
Mar 5, 2004
7:46 am
1409
Hi Matt, I was thinking of working with icc (linux version) 8.0 as well. ... The code is significantly different. What problem the compiler has I don't know! ...
Michael Stevens
mmssau
Offline Send Email
Mar 5, 2004
4:34 pm
1410
Hi Michael, The intel v8.0 compilers #define __GNUC__, __GNUC_MINOR__, and __GNUC_PATCHLEVEL__. I have found that this seems to break some metaprogramming and...
dmatt001
Offline Send Email
Mar 6, 2004
7:33 am
1411
Hi Vital, ... Fixed in uBLAS CVS. Thanks for your bug report, Joerg...
Joerg Walter
jhrwalter
Offline Send Email
Mar 6, 2004
1:06 pm
1412
Hi, could you please explain the different sparse matrix/vector types? I would like to know How big are they in memory? What are the timings for different...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Mar 7, 2004
7:36 pm
1413
VC7.1 gives some warnings for the current cvs ublas: vector_assign lines 82 and 471 "conversion from difference_type to const int" this calls line 1524 in...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Mar 7, 2004
7:36 pm
1414
The previous cvs version of inner_prod was wrong due to my false advice. I tried again and hopefully this time the algorithm works. The innerprod algorithm...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Mar 7, 2004
7:37 pm
1415
Hi, ... Hm, unsure. GCC and ICC accept this code. I suspect that ... std::max(difference_type(1), compare) ... could be a workaround. ... Oops. Fixed in CVS. ...
jhr.walter@...
jhrwalter
Offline Send Email
Mar 8, 2004
6:18 am
1416
... and "std::ptrdiff_t". ... The problem is solved by this elegant line: ... std::max(1, static_cast<const difference_type&>(- compare))); This looks like a...
gitarrenschlumpf
gitarrenschl...
Offline Send Email
Mar 8, 2004
5:17 pm
1417
Dear All, I have been working through the issues due to the recent Boost wide (in Boost CVS) introduction of std_min and std_max. These work around some...
Michael Stevens
mmssau
Offline Send Email
Mar 9, 2004
1:35 pm
1418
Hi. ... ...
David
david01123
Offline Send Email
Mar 10, 2004
2:56 pm
1419
Hi David, ... You're welcome. ... It is. Although its name is `ublas-dev', it is for ublas users, too. And, owing to the Joerg's hospitality, for bindings...
Kresimir Fresl
kyriales
Offline Send Email
Mar 11, 2004
12:36 pm
1420
Hi all, Hi, I've noticed this behavior when reading a bunch of vectors from a file (stream). I've boiled it down to this piece of test code. ...
Stefan Tarrant
stefantarrant
Offline Send Email
Mar 12, 2004
2:44 pm
1421
hi all. I've been using the coordinate_matrix class from uBlas with Visual C++ 7.0 (BOOST_MSCV = 1300) and, in particular, the member function sort (). I...
lbolla@...
lolloxxx
Offline Send Email
Mar 15, 2004
10:27 am
Messages 1392 - 1421 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