Mercurial > repos > public > sbplib_julia
view TODO.md @ 1715:0f655c1b7dba update/julia_1.10.5
Closing branch before merge to default
author | Vidar Stiernström <vidar.stiernstrom@gmail.com> |
---|---|
date | Thu, 05 Sep 2024 08:22:22 -0700 |
parents | 19cdec9c21cb |
children | 3e9c3986930d |
line wrap: on
line source
# TODO ## Organization - [ ] Split up Notes.md in several files ## Coding - [ ] Ändra namn på variabler och funktioner så att det följer style-guide - [ ] Add new Laplace operator to DiffOps, probably named WaveEqOp(?!!?) - [ ] Create a struct that bundles the necessary Tensor operators for solving the wave equation. - [ ] Use `@inferred` in a lot of tests. - [ ] Replace `@inferred` tests with a benchmark suite that automatically tests for regressions. - [ ] Make sure we are setting tolerances in tests in a consistent way - [ ] Write down some coding guideline or checklist for code conventions. For example i,j,... for indices and I for multi-index - [ ] Clean up RegionIndices 1. [ ] Write tests for how things should work 2. [ ] Update RegionIndices accordingly 3. [ ] Fix the rest of the library Should getregion also work for getregion(::Colon,...) - [ ] Add possibility to create tensor mapping application with `()`, e.g `D1(v) <=> D1*v`? - [ ] Add custom pretty printing to LazyTensors/SbpOperators to enhance readability of e.g error messages. See (https://docs.julialang.org/en/v1/manual/types/#man-custom-pretty-printing) - [ ] Samla noggrannhets- och SBP-ness-tester för alla operatorer på ett ställe - [ ] Move export statements to top of each module - [ ] Implement apply_transpose for - [ ] ElementwiseTensorOperation - [ ] VolumeOperator - [ ] Laplace - [ ] Gå igenom alla typ parametrar och kolla om de är motiverade. Både i signaturer och typer, tex D i VariableSecondDerivative. Kan vi använda promote istället? - [ ] Kolla att vi har @inbounds och @propagate_inbounds på rätt ställen - [ ] Kolla att vi gör boundschecks överallt och att de är markerade med @boundscheck - [ ] Kolla att vi har @inline på rätt ställen - [ ] Profilera ### Grids - [ ] Multiblock grids - [ ] Periodic grids - [ ] Grids with modified boundary closures - [ ] Support indexing with `:`. ### Benchmarks - [ ] Benchmarks for all grid indexing (focused on allocation) - [ ] Benchmarks for indexing of lazy grid functions - [ ] Add benchmarks for range type in EquidistantGrid. (LinRange vs StepRange)