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...
Show off your group to the world. Share a photo of your group with us.

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 594 - 623 of 2420   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
594
... I don't believe it's feasible. When implementing the bindings I found it to be very subtle. For instance, lapack functions might have different signatures...
Toon Knapen
tknapen
Offline Send Email
Apr 1, 2003
11:03 am
595
Hi, After some discussions in my group when we had Jeremy Siek visit this weekend we agreed that we would like to see generic C++ lapack interfaces that work...
Matthias Troyer
matthiastroyer
Offline Send Email
Apr 1, 2003
1:35 pm
596
Hi Matthias, hi all, ... This is the main idea behind the vector and matrix traits classes in the bindings library -- for example, currently blas level 1...
Kresimir Fresl
kyriales
Offline Send Email
Apr 1, 2003
2:57 pm
597
Kresimir, Mathias, all, Already from the experience of implementing the current bindings I learned a lot of things through cooperation with Kresimir and I...
Toon Knapen
tknapen
Offline Send Email
Apr 4, 2003
4:50 pm
598
... That's a good idea - it also helped me in other projects to discuss interface issues with others and am happy to participate. ... I just checked it out but...
Matthias Troyer
matthiastroyer
Offline Send Email
Apr 5, 2003
8:07 am
599
Hi Stephan, ... 2; ... The second slice 'slice (1, 0, m.size1()-2)' is degenerate in specifying a stride of 0, but a size of 2. With the modification //...
jhr.walter@...
jhrwalter
Offline Send Email
Apr 7, 2003
7:29 am
600
... in boost-sandbox/libs/numeric/bindings/traits/doc/index.html ? I doublechecked and it's there ?! ... yep , that's him. ... Where do we need types with...
Toon Knapen
tknapen
Offline Send Email
Apr 7, 2003
2:11 pm
601
Joerg, I've mentioned this before but never followed up the issue : matrix<T> has a clear() member function but the proxies do not. Should'nt all proxies...
Toon Knapen
tknapen
Offline Send Email
Apr 7, 2003
3:17 pm
602
... I found oth the index.html and the fortran.h file but did not see fortran.h mentioned in the documentation ... If we just want to bind to blas/lapack/atlas...
Matthias Troyer
matthiastroyer
Offline Send Email
Apr 7, 2003
3:42 pm
603
Salut, ... at least one could do something ugly like #define USE_LAPACK_UNDERSCORE_IN_NAME #define USE_LAPAPCK_CAPITAL #ifdef USE_LAPACK_UNDERSCORE_IN_NAME ...
Peter Schmitteckert
buckelrunter
Offline Send Email
Apr 7, 2003
4:03 pm
604
Salut, ... sorry, I just realized that the Daxpy in the second last line does not get substituted. Maybe it's easier to write a small C++ programm that ...
Peter Schmitteckert
buckelrunter
Offline Send Email
Apr 7, 2003
4:20 pm
605
Hi Toon, Hi Mathias, hi all, Toon wrote: [...] ... [...] ... [...] I must admit that Fortran is not my strong point, so I'll leave that part to you -- but, of...
Kresimir Fresl
kyriales
Offline Send Email
Apr 7, 2003
4:22 pm
606
Hi Joerg, hi Stephan, ... It also fails with como. As it should. This is the old problem of binding references to temporaries: parameters of `swap()' are...
Kresimir Fresl
kyriales
Offline Send Email
Apr 7, 2003
4:45 pm
607
... They are indeed orthogonal, but you need to know the requirements (which you probably due): pointer to first element, stride, leading dimension, size. ...
Matthias Troyer
matthiastroyer
Offline Send Email
Apr 7, 2003
5:06 pm
608
... This might indeed be the easiest but it is such a pity that we have to use C++ executables to create C++ code instead of using preprocessor hacks or TMP...
Matthias Troyer
matthiastroyer
Offline Send Email
Apr 7, 2003
5:15 pm
609
... Well, yes, I know the requirements. Vector and matrix traits are already written, see boost/numeric/bindings/traits/traits.hpp and various...
Kresimir Fresl
kyriales
Offline Send Email
Apr 7, 2003
5:30 pm
610
Hi, I'm not sure, because I never used it, but GNU AutoGen can convert characters: `string-downcase' - lower case a new string It creates a new SCM string...
Leonildo Tincani
leonildo.tincani@...
Send Email
Apr 7, 2003
6:31 pm
611
Hi Matthias (hi all), ... I've been thinking about the lapack bindings for some time now and I believe it's firstly necessary to limit the scope of...
jhr.walter@...
jhrwalter
Offline Send Email
Apr 7, 2003
8:40 pm
612
Hi Kresimir, ... Thanks for checking that! ... Not sure about that. Maybe swap()'s signatures are inadequate for the view classes. If I change matrix_row<>'s...
jhr.walter@...
jhrwalter
Offline Send Email
Apr 8, 2003
10:19 am
613
Hi Joerg, ... Is there not an efficiency issue with the additional copy constructors necessary for the pass by value? Or are you assuming (hopeing) the...
Michael Stevens
mmssau
Offline Send Email
Apr 8, 2003
12:23 pm
614
Salut, ... Does it make sense to have a call by value for swap ? Why should I want to swap local copies of matrix. I expect from a call by value that the...
Peter Schmitteckert
buckelrunter
Offline Send Email
Apr 8, 2003
12:50 pm
615
... Compiles with VC++ 7, boost 1_30. VC7 allows temporary structs as non-const reference parameters, but no ints. I seem to remember a rumour that the ...
Julius Muschaweck
juliusmuscha...
Offline Send Email
Apr 8, 2003
1:46 pm
616
... matrix_row<> object contains only a reference to the matrix and a row index, so copy constructor is not very expensive. Instead of copying pointer (which...
Kresimir Fresl
kyriales
Offline Send Email
Apr 8, 2003
2:17 pm
617
Salut, ... With that semantic, one should use swap() wit copy semantics, since r1 and r2 are not changed. I thought that the references should be exchanged,...
Peter Schmitteckert
buckelrunter
Offline Send Email
Apr 8, 2003
2:42 pm
618
Salut, ... actually there is a swap_ranges in STL which swaps parts of a container, see http://www.sgi.com/tech/stl/swap_ranges.html . Best regards, Peter...
Peter Schmitteckert
buckelrunter
Offline Send Email
Apr 8, 2003
4:41 pm
619
Salut, ... and please take a look at Note 2 in http://www.sgi.com/tech/stl/swap.html Best wishes, Peter...
Peter Schmitteckert
buckelrunter
Offline Send Email
Apr 8, 2003
4:43 pm
620
... Obviously, there are two possible semantics of swap for proxy classes -- swapping references and swapping actual elements. Question is whether the exchange...
Kresimir Fresl
kyriales
Offline Send Email
Apr 8, 2003
5:22 pm
621
Hi Everyone While everyone is discussing bindings I thought I would look at one issue that came up way back in the Boost review :-) At the moment uBLAS uses ...
Michael Stevens
mmssau
Offline Send Email
Apr 8, 2003
5:24 pm
622
Hi Joerg, Hi Kresimir, ... and ... Since swap is usually assumed to be a fast basic operation even a small overhead associate with the copy constructor would...
Michael Stevens
mmssau
Offline Send Email
Apr 8, 2003
5:57 pm
623
Hi Michael, you wrote: [snip] ... We are talking about the intricacies of the language! I'm trying to get that stuff compiling on a compliant compiler. For the...
jhr.walter@...
jhrwalter
Offline Send Email
Apr 8, 2003
9:50 pm
Messages 594 - 623 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