Mercurial > repos > public > sbplib_julia
comparison TODO.md @ 319:05ac7d7f9176
Move research and thinking from TODO.md to Notes.md
author | Jonatan Werpers <jonatan@werpers.com> |
---|---|
date | Thu, 10 Sep 2020 10:56:31 +0200 |
parents | 0c8d4a734c4f |
children | d705b397aa33 |
comparison
equal
deleted
inserted
replaced
318:0c8d4a734c4f | 319:05ac7d7f9176 |
---|---|
12 TensorMappings that are flexible in size and those that are fixed in size | 12 TensorMappings that are flexible in size and those that are fixed in size |
13 - [ ] Use traits for symmetric tensor mappings such that apply_transpoe = apply for all such mappings | 13 - [ ] Use traits for symmetric tensor mappings such that apply_transpoe = apply for all such mappings |
14 - [x] Move Laplace tensor operator to different package | 14 - [x] Move Laplace tensor operator to different package |
15 - [x] Remove grid as a property of the Laplace tensor operator | 15 - [x] Remove grid as a property of the Laplace tensor operator |
16 - [ ] Update how dependencies are handled for tests. This was updated in Julia v1.2 and would allow us to use test specific dev packages. | 16 - [ ] Update how dependencies are handled for tests. This was updated in Julia v1.2 and would allow us to use test specific dev packages. |
17 | |
18 ## Reasearch and thinking | |
19 - [ ] Use a trait to indicate if a TensorMapping uses indices with regions. | |
20 The default should be that they do NOT. | |
21 - [ ] What to name this trait? Can we call it IndexStyle but not export it to avoid conflicts with Base.IndexStyle? | |
22 - [ ] Use a trait to indicate that a TensorMapping har the same range and domain? | |
23 - [ ] Rename all the Tensor stuff to just LazyOperator, LazyApplication and so on? | |
24 - [ ] Figure out repeated application of regioned TensorMappings. Maybe an instance of a tensor mapping needs to know the exact size of the range and domain for this to work? | |
25 - [ ] Check how the native julia doc generator works | |
26 - [ ] Check if Vidars design docs fit in there | |
27 - [ ] Formalize how range_size() and domain_size() are supposed to work in TensorMappings where dim(domain) != dim(range) (add tests or document) | |
28 - [ ] Create a macro @lazy which replaces a binary op (+,-) by its lazy equivalent? Would be a neat way to indicate which evaluations are lazy without cluttering/confusing with special characters. | |
29 - [ ] Specificera operatorer i TOML eller något liknande? | |
30 - [x] Redo all Tensor applys to take Vararg instead of tuple of Index? | |
31 - [x] Should there be some kind of collection struct for SBP operators (as TensorOperators), providing easy access to all parts (D2, e, d , -> YES! | |
32 H.. H_gamma etc.) | |
33 - [x] Is "missing" a good value for unknown dimension sizes (of `e*g` for example) | |
34 | 17 |
35 # Wrap up task | 18 # Wrap up task |
36 | 19 |
37 - [ ] Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen | 20 - [ ] Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen |
38 - [ ] Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck | 21 - [ ] Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck |