From 94f4ce1c9675dddd323a50624ae22f9e9406be61 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Wed, 20 Mar 2019 10:55:23 +0000 Subject: [PATCH] add a couple of example names to one of the pipeline stages --- src/add/example_buf_pipe.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/add/example_buf_pipe.py b/src/add/example_buf_pipe.py index c399570a..a91b5084 100644 --- a/src/add/example_buf_pipe.py +++ b/src/add/example_buf_pipe.py @@ -322,10 +322,10 @@ class ExampleStage: """ def ispec(): - return Signal(16) + return Signal(16, name="example_input_signal") def ospec(): - return Signal(16) + return Signal(16, name="example_output_signal") def process(i): """ process the input data and returns it (adds 1) -- 2.30.2