Skip to content

Commit

Permalink
Fix regression in IR examples iframes
Browse files Browse the repository at this point in the history
  • Loading branch information
mszalkowski-ant committed Dec 17, 2024
1 parent 30de971 commit aa01de5
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion examples/ir_examples/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
These examples represent different feature sets that are important for us in Topwrap.
They are used to gather requirements for our internal data format based on features we want to support and on the syntax of other independent external formats like IP-XACT.

More information about them is available in the documentation at https://antmicro.github.io/topwrap/developers_guide/ir-examples.md
More information about them is available in the documentation at https://antmicro.github.io/topwrap/developers_guide/ir-examples

Copyright (c) 2024 [Antmicro](https://antmicro.com)
2 changes: 1 addition & 1 deletion examples/ir_examples/hierarchical/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JSONS = kpm_spec.json kpm_dataflow.json
all: $(JSONS)

$(JSONS):
topwrap specification
topwrap specification -d design.yaml
topwrap dataflow -d design.yaml

clean:
Expand Down
2 changes: 1 addition & 1 deletion examples/ir_examples/interconnect/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JSONS = kpm_spec.json kpm_dataflow.json
all: $(JSONS)

$(JSONS):
topwrap specification
topwrap specification -d design.yaml
topwrap dataflow -d design.yaml

clean:
Expand Down
2 changes: 1 addition & 1 deletion examples/ir_examples/interface/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JSONS = kpm_spec.json kpm_dataflow.json
all: $(JSONS)

$(JSONS):
topwrap specification
topwrap specification -d design.yaml
topwrap dataflow -d design.yaml

clean:
Expand Down
2 changes: 1 addition & 1 deletion examples/ir_examples/simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ JSONS = kpm_spec.json kpm_dataflow.json
all: $(JSONS)

$(JSONS):
topwrap specification
topwrap specification -d design.yaml
topwrap dataflow -d design.yaml

clean:
Expand Down
2 changes: 1 addition & 1 deletion topwrap/kpm_topwrap_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ async def _kpm_handle_graph_change(rpc_object: RPCMethods):
)


def _kpm_dataflow_run_handler(data: JsonType, spec: JsonType, build_dir: Path) -> list:
def _kpm_dataflow_run_handler(data: JsonType, spec: JsonType, build_dir: Path) -> list[str]:
"""Parse information about design from KPM dataflow format into Topwrap's
internal representation and build the design.
"""
Expand Down

0 comments on commit aa01de5

Please sign in to comment.