add grant links, and record of funding under #538
[nmutil.git] / src / nmutil / concurrentunit.py
index f4667b6ed52634e82aba215a708ef63ec20e177a..6d2ff3d56b814b4bf50b3890e58a5678d3160b5d 100644 (file)
@@ -1,11 +1,20 @@
 """ concurrent unit from mitch alsup augmentations to 6600 scoreboard
 
+    This work is funded through NLnet under Grant 2019-02-012
+
+    License: LGPLv3+
+
+
     * data fans in
     * data goes through a pipeline
     * results fan back out.
 
     the output data format has to have a member "muxid", which is used
     as the array index on fan-out
+
+    Associated bugreports:
+
+    * https://bugs.libre-soc.org/show_bug.cgi?id=538
 """
 
 from math import log
@@ -21,6 +30,7 @@ from nmutil.multipipe import PriorityCombMuxInPipe
 def num_bits(n):
     return int(log(n) / log(2))
 
+
 class PipeContext:
 
     def __init__(self, pspec):