Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
9908ad8
first pass
thehrh Apr 24, 2026
f85ca04
Let Stage class listify supported_reps values if necessary, so that i…
thehrh Apr 25, 2026
9c75ee6
second pass: delistify supported_reps values in individual services w…
thehrh Apr 25, 2026
f7735eb
adapt all example pipeline configs and let Pipeline class accept thei…
thehrh Apr 25, 2026
5643a6b
few small doc fixes
thehrh Apr 25, 2026
9ef0965
these shouldn't have been there
thehrh Apr 29, 2026
41311ae
adapt test_Pipeline() function
thehrh Apr 29, 2026
7aa6365
fix bug that allowed running pipeline with invalid (None) stage modes
thehrh May 15, 2026
95164a5
Merge branch 'fix_pipeline_runs_with_none_stage_modes' into stages_su…
thehrh May 15, 2026
138f084
minor fixes
thehrh May 15, 2026
70b0ad9
new Stage attributes (has_setup, has_compute, has_apply) indicating o…
thehrh May 23, 2026
f71437e
use new Stage attributes to set supported reps. for given Stage mode …
thehrh May 24, 2026
0e63682
remove explicit definition of supported_reps where not necessary any …
thehrh May 24, 2026
a329272
accidentally added file
thehrh May 24, 2026
171746e
expand and update service howto and add trace-level logging to Contai…
thehrh May 27, 2026
16d95bb
warn when non-trivial supported rep. is detected even though correspo…
thehrh May 27, 2026
e83d6ea
auto-generate a service implementation reference table (md or csv) an…
thehrh May 28, 2026
2f7c937
change default translation mode for any 'weight'-like variable
thehrh May 29, 2026
6b7d948
Merge branch 'master' into stages_supported_reps_and_doc_format
thehrh May 29, 2026
97962cb
remove default_translation_mode Container attribute and rename tranla…
thehrh Jun 1, 2026
09484fb
remove apply_mode consistency checks at pipeline level and prepare fo…
thehrh Jun 3, 2026
cf20190
reintroduce overriding of all binned apply_modes for now, since utils…
thehrh Jun 3, 2026
2bd25f8
fix stage modes notebook again [no ci]
thehrh Jun 3, 2026
c9b2e46
fix Container.__setitem__ and __add_data docstrings and actually auto…
thehrh Jun 4, 2026
b6589c4
Merge branch 'master' into stages_supported_reps_and_doc_format and f…
thehrh Jun 4, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,18 @@
# make sure the target is unique
autosectionlabel_prefix_document = True

# -- autodoc configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/extensions/autodoc.html

# Just documenting all dunder members clutters docs, so select a few which have
# useful docstrings in PISA (extend if desired). Alternatively, can specify
# 'exclude-members' in dictionary below.
special_members_to_doc = '__getitem__, __setitem__'

autodoc_default_options = {
'special-members': special_members_to_doc
}

# -- intersphinx configuration -----------------------------------------------
# To look up all available targets in python docs, for instance:
# python -m sphinx.ext.intersphinx https://docs.python.org/3/objects.inv
Expand Down
Loading