forked from michael-lehn/FLENS
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathTODO.txt
46 lines (35 loc) · 893 Bytes
/
TODO.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
FLENS
=====
[ ] Use cxxblas::Complex rather than std::complex
[ ] Use of std::allocator_traits in typedefs
[ ] Further checking of allocator types, etc
[ ] Fix MatrixView from DenseVector in impls (need allocators types)
[x] -- Result<M> propogates allocator
[x] -- gesv, getrs propogates allocator
[x] -- posv, potrs propogates allocator
CXXBLAS/CUBLAS
======
[x] Allow thrust::complex
[ ] Implement geam
[ ] Reroute matrix copy/axpby/axpy/transpose/etc through geam
CXXLAPACK/CUSOLVER
========
[ ] Use cxxblas::Complex rather than std::complex in cxxlapack
[x] getrf
[x] getrs
[x] gesv (mocked with trf/trs)
[x] potrf
[x] potrs
[x] potsv (mocked with trf/trs)
[ ] geqrf
[ ] ormqr
[ ] sytrf
[ ] gebrd
[ ] gesvd
CUSOLVER_SP??
==========
C++ General
===========
[ ] using X = Y rather than typedef Y X;
[ ] Prefer <type_traits> over custom impls
[ ] Improved type introspection