-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/main' into v2-prototype
- Loading branch information
Showing
10 changed files
with
212 additions
and
13 deletions.
There are no files selected for viewing
70 changes: 70 additions & 0 deletions
70
docs/developer/adr/0001-remove-isinstance-checks-when-setting-parameters.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
# ADR 0001: Remove isinstance checks when setting parameters | ||
|
||
- Status: accepted | ||
- Deciders: Jan-Lukas, Neil, Simon | ||
- Date: 2024-04-15 | ||
|
||
## Context | ||
|
||
Sciline builds a data dependency graph based on type hints of callables. | ||
Dependencies can be fulfilled by setting values (instances of classes) as so called *parameters*. | ||
In an attempt to extend the correctness guarantees of the dependency graph, Sciline's `__setitem__` checks if the value is instance of the key (a type) when setting a parameter. | ||
|
||
This has led to a number of problems. | ||
For example, supporting different file handles types is too difficult [#140](https://github.com/scipp/sciline/issues/140), | ||
parameter type handling is too inflexible in general [#144](https://github.com/scipp/sciline/issues/144), | ||
and the mechanism is broken with Python 3.12 type aliases [#145](https://github.com/scipp/sciline/issues/145). | ||
In short, the mechanism gets in the way of the user, since it causes false positives. | ||
|
||
Considering the bigger picture, we can think of this mechanism as a poor man's form of *validation*. | ||
Validation of input parameters is very important when running workflows, but it should be done in a more explicit way. | ||
Validating the type is only a fraction of what we want to do when validating parameters. | ||
Therefore, we should remove this mechanism and replace it with a more general validation mechanism. | ||
The more general validation mechanism can be considered out of scope for Sciline, and should be implemented in the user code or using other common libraries such as `pydantic`. | ||
|
||
Finally, we can think of this mechanism as a form of runtime type checking. | ||
We should ask ourselves if this is the intended scope of Sciline. | ||
If it is, shouldn't we also check that each provider actually returns the correct type? | ||
|
||
The main problem with not checking value types when setting parameters is that it is not possible to catch such errors with `mypy`, in contrast to return values of providers, which `mypy` *can* check. | ||
|
||
Consider the following example of setting $Q$ bins for a workflow, given by a `scipp.Variable`, which would then be passed to `scipp.hist` to create a histogram: | ||
|
||
```python | ||
pipeline[QBins] = sc.linspace(...) | ||
pipeline[QBins] = 1000 # error in current implementation | ||
pipeline[QBins] = sc.linspace(..., unit='m') # no error, but wrong unit | ||
``` | ||
|
||
Checking the type catches the first error, but not the second. | ||
Paradoxically, setting an integer would often be a valid operation in the example, since `scipp.hist` can handle this case, whereas the wrong unit would not be valid. | ||
This may indicate that defining `QBins` as an alias of `scipp.Variable` is actually an instance of an anti-pattern. | ||
Instead, imagine we have defined a specific `class QBins`, which performs validation in its constructor, and defines `__call__` so it can be used as a provider: | ||
|
||
```python | ||
pipeline.insert(QBins(sc.linspace(...))) | ||
pipeline.insert(QBins(1000)) # ok | ||
pipeline.insert(QBins(sc.linspace(..., unit='m'))) # error constructing QBins | ||
``` | ||
|
||
This example illustrates that a clearer and more specific expression of intent can avoid the need for relying on checking the type of the value when setting a parameter. | ||
|
||
## Decision | ||
|
||
- The core scope of Sciline is the definition of task graphs. | ||
Type validation is not. | ||
- Remove the mechanism that checks if a value is an instance of the key when setting it as a parameter. | ||
- Encourage users to validate inputs in providers, which can also be tested in unit tests without setting up the full workflow. | ||
- Encourage users to use a more general parameter validation mechanism using other libraries. | ||
- Consider adding a mechanism to inject a callable to use for parameter validation as a argument when creating a `Pipeline`. | ||
|
||
## Consequences | ||
|
||
### Positive | ||
|
||
- The mechanism will no longer get in the way of the user. | ||
- The code will be simplified slightly. | ||
|
||
### Negative | ||
|
||
- `sciline.Pipeline` will support duck-typing for parameters, in a way that cannot be checked with `mypy`. |
105 changes: 105 additions & 0 deletions
105
docs/developer/adr/0002-remove-special-handling-of-optional-and-union.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,105 @@ | ||
# ADR 0002: Remove special handling of Optional and Union | ||
|
||
- Status: accepted | ||
- Deciders: Jan-Lukas, Johannes, Mridul, Simon, Sunyoung | ||
- Date: 2024-04-15 | ||
|
||
## Context | ||
|
||
### General | ||
|
||
Sciline builds a data dependency graph based on type hints of callables. | ||
Some callables may have optional inputs, which are commonly represented by `Optional[T]` in the type hint, for some type `T`. | ||
Therefore, in [#50](https://github.com/scipp/sciline/pull/50) we have added special handling for `Optional` and [#89](https://github.com/scipp/sciline/pull/89) extended this for `Union`. | ||
In the case of `Optional`, they way this works is that `sciline.Pipeline` prunes branches at the node where the optional input used, if any ancestor node has unsatisfied dependencies. | ||
Instead, an implicit `None` provider is added. | ||
This has a series of problems, which we exemplify for the case of `Optional`. | ||
|
||
1. Default values (which are currently ignored by Sciline) are overridden by the implicit `None` provider. | ||
In other words, Sciline assumes that the default value of the optional input is `None`. | ||
2. Entire branches are pruned, which can hide bugs. | ||
If the users added providers for the optional input, they will not be used if any of them has unintentionally unsatisfied dependencies. | ||
3. The special mechanism prevents the (in principle very valid) use of any providers that return an `Optional` or `Union` type. | ||
4. Optional inputs cannot be set to `None` *explicitly*. | ||
|
||
In summary, the special handling of `Optional` and `Union` is too implicit and causes more problems than it solves. | ||
There are a couple more aspects to consider. | ||
|
||
### Readability of user code | ||
|
||
Handling `Optional` explicitly would make user code more readable. | ||
Consider the following example: | ||
|
||
```python | ||
pipeline[MyParam] = 1.2 | ||
``` | ||
|
||
In the current implementation this gives no indication to the user that `MyParam` is not a required input. | ||
Furthermore, if the line is removed, the user may not realize that `MyParam` is available as an optional input. | ||
With the proposed change, the user can make this explicit: | ||
|
||
```python | ||
pipeline[Optional[MyParam]] = 1.2 | ||
``` | ||
|
||
Above it is clear that `MyParam` is optional, and it can be set to `None` explicitly: | ||
|
||
```python | ||
pipeline[Optional[MyParam]] = None | ||
``` | ||
|
||
### Code complexity and maintainability | ||
|
||
The special handling of `Optional` and `Union` is a significant source of complexity in the code, requiring a significant amount of unit testing. | ||
|
||
### Conceptual clarity | ||
|
||
The current redesign of Sciline highlighted that the current implementation is conceptually flawed. | ||
It makes it tricky to represent the internals of `sciline.Pipeline` as a simple data dependency graph. | ||
The special handling of `Optional` and `Union` seems to require pervasive changes to the code, which is a sign that it is not a good fit for the design. | ||
|
||
### Counter arguments | ||
|
||
#### Multiple providers may depend on the same input, but not all optionally | ||
|
||
This seems like a special case that we have not seen in practice, is likely not worth the complexity of the current implementation. | ||
|
||
#### Using a provider returning a non-optional output to fulfill an optional input | ||
|
||
This is a very valid use case, but it would be made impossible if we stop associating a node `T` with an optional input `Optional[T]`. | ||
There are a couple of possible workarounds: | ||
|
||
- Add an explicit `Optional` provider that wraps (or depends on) the non-optional provider. | ||
- Modify the graph structure (which we plan to support in the redesign of Sciline) using something like `pipeline[Optional[MyParam]] = pipeline[MyParam]`. | ||
|
||
#### Using a provider to return one of a union's types | ||
|
||
Same as above, for `Optional[T]`. | ||
|
||
#### Setting union parameters is unwieldy | ||
|
||
Given a provider `f(x: A | B | C) -> D: ...`, a user would need to set a value for the input of `f` like `pipeline[A | B | C] = ...`. | ||
It would be easier if they could be more specific, like `pipeline[A] = ...`. | ||
|
||
In this case, we think defining an alias for `A | B | C` would be a better solution than the current special handling of `Union`. | ||
It would force the user to be more explicit about the input type, which is a good thing. | ||
Conceptually the use of `Union` may just be an indicator that `f` depends on some common aspect of `A`, `B`, and `C`, which could be made explicit by defining a new type or protocol. | ||
|
||
## Decision | ||
|
||
Remove the special handling of `Optional` and `Union`. | ||
|
||
## Consequences | ||
|
||
### Positive | ||
|
||
- Sciline's code will be simplified significantly. | ||
- User code will be more readable. | ||
- Implicit behavior around pruning and using `None` providers will be removed. | ||
- Users can use providers that return `Optional` or `Union` types. | ||
- Decouples the handling of optional inputs from the handling of default values. | ||
This will enable us to make independent decisions about how to handle default values. | ||
|
||
### Negative | ||
|
||
- Workarounds are needed for the use case of using a provider returning a non-optional output to fulfill an optional input, and for setting union parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# Architecture Decision Records | ||
|
||
```{toctree} | ||
--- | ||
maxdepth: 1 | ||
glob: true | ||
--- | ||
adr/* | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters