circt/frontends
Morten Borup Petersen afbae37cdc
[PyCDE] Fix invalid `inputs` function (#8507)
* [PyCDE] Fix invalid `inputs` function

This might just have been some outdated code.

The previous `inputs` function had an incorrect type annotation (i.e. it defers to the following code:
```python
  @property
  def inputs(self) -> List[Input]:
    return [p for p in self.ports if isinstance(p, Input)]
```
Might as well return that list instead of reducing it to a dictionary.

Secondly, also adds a (presumably) missing `outputs` method.

* fix whitespace
2025-05-27 09:08:51 +02:00
..
PyCDE [PyCDE] Fix invalid `inputs` function (#8507) 2025-05-27 09:08:51 +02:00
PyRTG [PyRTG] Refactor for easier downstream inclusion (#8398) 2025-05-14 11:21:52 +01:00
CMakeLists.txt [RTG] Add the PyRTG frontend (#8187) 2025-02-13 21:40:40 +00:00