Here is another idea for the high level interfaces (and maybe even the lower level ones).

Right now, many of emails about "bugs" to the ublas lapack bindings have to do with row vs. column storage with the inevitable answer to use fortran storage.

One solution is to always static assert the storage ordering in all of the functions and break if they call it with row_major.

But can't we get "partial" support for row major by exploiting the lapack routines and the symmetry of certain routines?  For example:
I realize that many of these things may be tough to automatically generate from the python generator, but perhaps they could be done for the higher level routines.  It would be really nice if we could use row major matrices where possible, especially since many people may be concurrently using routines in other bindings/functions that require row major matrices (I know I have some).

-Jesse