(*other: Dict[str, 'TensorSpec'])
| 94 | ) |
| 95 | |
| 96 | def max_dictionaries(*other: Dict[str, 'TensorSpec']): |
| 97 | return {k: TensorSpec.max(*(o[k] for o in other if k in o)) for k in get_all_keys(other)} |
| 98 | |
| 99 | |
| 100 | @dataclasses.dataclass |
no test coverage detected