From: Luke Kenneth Casson Leighton Date: Thu, 28 Mar 2019 03:40:29 +0000 (+0000) Subject: remove print debug statements X-Git-Tag: ls180-24jan2020~1445 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=4c591b37473d69808e91007670108c0e7daffa6d;p=ieee754fpu.git remove print debug statements --- diff --git a/src/add/singlepipe.py b/src/add/singlepipe.py index 8ae9b806..3150d389 100644 --- a/src/add/singlepipe.py +++ b/src/add/singlepipe.py @@ -207,7 +207,6 @@ class NextControl: data/valid is passed *TO* nxt, and ready comes *IN* from nxt. use this when connecting stage-to-stage """ - print ("connect next", self, nxt) return [nxt.i_valid.eq(self.o_valid), self.i_ready.eq(nxt.o_ready), eq(nxt.i_data, self.o_data), @@ -252,7 +251,7 @@ def eq(o, i): o, i = [o], [i] res = [] for (ao, ai) in zip(o, i): - print ("eq", ao, ai) + #print ("eq", ao, ai) if isinstance(ao, Record): for idx, (field_name, field_shape, _) in enumerate(ao.layout): if isinstance(field_shape, Layout): @@ -398,7 +397,6 @@ class ControlBase: def connect_to_next(self, nxt): """ helper function to connect to the next stage data/valid/ready. """ - print ("ControlBase connect next", self, nxt) return self.n.connect_to_next(nxt.p) def _connect_in(self, prev):