I realise that the binding will need quite some work to get right under VC6 (see previous posting). I would welcome suggestions to do the conversion directly (so without all the traits stuff) and not as general. Goal would be to quickly start and then (hopefully) one day be able to migrate to the traits version. Maybe the getrf function in Lapack would be a good starting point? Thanks ... By the way Toon, I think there is a typo in lapack.hpp: template < typename matrix_type, typename IpivIterator > int getrf(matrix_type& a, IpivIterator begin_ipiv, IpivIterator end_ipiv) { using namespace boost::numeric::bindings::traits ; typedef typename matrix_type::value_type value_type ; typedef typename boost::numeric::bindings::traits::value_traits< value_type >::value_type bind_type ; int m = boost::numeric::bindings::traits::matrix_size1( a ) ; int n = boost::numeric::bindings::traits::matrix_matrix_size2( a ) ; Shouldn't matrix_matrix_size2 be matrix_size2? (I can't compile so I did a visual compilation ;^) ... Rgds Geert
Hi Geert, you wrote:
I realise that the binding will need quite some work to get right under VC6 (see previous posting).
(This is a reply to both postings.) Unfortunately (or, maybe, fortunately ;o), I don't have any experience with VC6 (or VC7). Neither I have access to it, so all that I will write will be just a guess -- I can't check it. My first guess is that the problem is not in template specialization, but in *partial* template specialization -- for example, in ublas/traits.hpp there is a template class `type_traits<>' which is *fully* specialized for float, double etc. and AFAIK VC6 doesn't complain.
I would welcome suggestions to do the conversion directly (so without all the traits stuff) and not as general. Goal would be to quickly start and then (hopefully) one day be able to migrate to the traits version. Maybe the getrf function in Lapack would be a good starting point? Thanks ...
If I understand you correctly, by `to quickly start' and `to
migrate' you mean the following scenario:
-- write (and compile ;o) now something like:
ublas::matrix
{ public: typedef general_t matrix_structure; typedef double value_type; typedef double* pointer; typedef boost::numeric::ublas::matrix< double, boost::numeric::ublas::column_major > matrix_type; static pointer storage (matrix_type& m) { return m.data().begin(); } static int size1 (matrix_type& m) { return m.size1(); } static int size2 (matrix_type& m) { return m.size2(); } // etc. }; // same thing (copy&paste with a bit of post-editing) for // matrix<double> const // matrix<float> // matrix<float> const // etc. ============================================= Note [1]: as I said, currently you don't need vector_traits<>, but with the next version of bindings you will probably need them. We recently discussed the interface of getrf, getrs etc. Currently, getrf is: template < typename matrix_type, typename IpivIterator > int getrf(matrix_type& a, IpivIterator begin_ipiv, IpivIterator end_ipiv); but in the next version it will be: template < typename matrix_type, typename int_vector_type > int getrf(matrix_type& a, int_vector_type& piv); (as in the atlas/clapack bindings) and to get the starting address of the pivot vector `piv' vector_traits<>::storage() will be needed -- but then you can probably write full specialization of vector_traits for std::vector<int>.
By the way Toon, I think there is a typo in lapack.hpp: [...] int n = boost::numeric::bindings::traits::matrix_matrix_size2( a ) ;
Shouldn't matrix_matrix_size2 be matrix_size2?
Yes, it should. Regards, fres
Hi Geert,
you wrote:
I realise that the binding will need quite some work to get right under VC6 (see previous posting).
On Tuesday 15 April 2003 12:57, Kresimir Fresl wrote: the BLAS and LAPACK bindings are going to be totally revised, the traits however are there to stay. Any possibility to upgrade to VC7 because compatibility with VC6 is not feasible I think. toon
participants (3)
-
geert_ceuppens
-
Kresimir Fresl
-
Toon Knapen