Opened 13 years ago
Last modified 13 years ago
#3396 assigned Feature Requests
add a sparse_view class that wraps pre-allocated data into a matrix expression
Reported by: | Gunter | Owned by: | Gunter |
---|---|---|---|
Milestone: | Boost 1.42.0 | Component: | uBLAS |
Version: | Boost 1.40.0 | Severity: | Not Applicable |
Keywords: | Cc: |
Description
Provide a way to use ublas with pre-allocated data. Implement a matrix view of a CRS matrix as proof of concept. Details:
- given 3 arrays: row pointers, column indices, values (http://www.netlib.org/utk/papers/templates/node90.html)
- provide a wrapper that fulfills the immutable part of the matrix expression
Further tasks:
- split the current matrix and vector concepts into immutable and mutable parts in order to gain a "read-only view" concept and a full featured "expression" concept
- improve traits mechanism and apply it where possible to automatically see a fixed size C-array as vector view or matrix view
- add necessary tests
Change History (5)
comment:1 by , 13 years ago
comment:2 by , 13 years ago
comment:3 by , 13 years ago
comment:4 by , 13 years ago
Milestone: | Boost 1.41.0 → Boost 1.42.0 |
---|---|
Status: | new → assigned |
rescheduled in favor of other tasks
Note:
See TracTickets
for help on using tickets.
(In [56003]) see #3396
traits.hpp:
experimental:
experimental/sparse_view.hpp:
detail/concepts.hpp: