Casper da Costa-Luis
Casper da Costa-Luis
in `framework/processors.py`: - [ ] deprecate or delete "Example of DataProcessors" classes - [ ] deprecate `DataProcessor`, `DataProcessor23D`
optimisation/operators/SparseFiniteDifferenceOperator.py has a `if __name__ == '__main__'` section which should be moved to tests or deleted
Build with `devel` (cuda toolkit) but ship with `runtime` images (saves ~2.3 GB image size)
- [ ] CPU-only default for gh codespaces - [ ] GPU option (e.g. using https://containers.dev/implementors/templates/#folder-structure)? Main problem: at least some devcontainer tools (e.g. [VSCode extensions](https://containers.dev/supporting#dev-containers)) and [docker-stacks](https://jupyter-docker-stacks.readthedocs.io) both fix...
revert 1fdf1ab9f28aaf6b98aed73a2a4824f58ce51b08 from #846 - [ ] depends on https://github.com/TomographicImaging/CIL/issues/1732
Could make installation much easier (`pip install sirf`) by precompiling for a range of OSs? See https://cibuildwheel.readthedocs.io
Feature request for ability to undo `yaml.add_representer()`. For example, to temporarily change the representation (so as to not affect other modules using yaml): ```python import yaml def represent_list(self, data, flow_style=True):...
Use "Co-authored by" commit messages to correct authorship of GitHub web UI commits.
Is there support/guides for multiple docker-compose projects? e.g. something like: ```yml # server/docker-compose.yml services: caddy-gen: ... networks: [caddy-gen] networks: {caddy-gen: {name: caddy-gen}} # project1/docker-compose.yml networks: {caddy-gen: {external: true}} services: app1:...