From 0e3d645f096cd59501e0bb4ffdc01a57cac30503 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Tue, 16 Jul 2019 13:03:46 +0100 Subject: [PATCH] add comments --- src/ieee754/fpadd/pipeline.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/ieee754/fpadd/pipeline.py b/src/ieee754/fpadd/pipeline.py index 9c51c3ca..5d622132 100644 --- a/src/ieee754/fpadd/pipeline.py +++ b/src/ieee754/fpadd/pipeline.py @@ -30,6 +30,12 @@ normpack - FPNormToPack ispec FPAddStage1Data CorrectionsMod, PackMod +This pipeline has a 3 clock latency, and, with the separation into +separate "modules", it is quite clear how to create longer-latency +pipelines (if needed) - just create a new, longer top-level (FPADDBasePipe +alternative) and construct shorter pipe stages using the building blocks, +RoundMod, FPAddStage0Mod etc. + """ from nmigen import Module -- 2.30.2