From a19f3320d1b87fd6f1dd161f1a5d0971b778d003 Mon Sep 17 00:00:00 2001 From: Luke Kenneth Casson Leighton Date: Fri, 24 Jan 2020 11:15:30 +0000 Subject: [PATCH] add more to module docstring --- src/ieee754/part/partsig.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/ieee754/part/partsig.py b/src/ieee754/part/partsig.py index df7ad7b6..f9675f75 100644 --- a/src/ieee754/part/partsig.py +++ b/src/ieee754/part/partsig.py @@ -8,6 +8,11 @@ dynamic-partitionable class similar to Signal, which, when the partition is fully open will be identical to Signal. when partitions are closed, the class turns into a SIMD variant of Signal. *this is dynamic*. +the basic fundamental idea is: write code once, and if you want a SIMD +version of it, use PartitionedSignal in place of Signal. job done. +this however requires the code to *not* be designed to use nmigen.If, +nmigen.Case, or other constructs: only Mux and other logic. + http://bugs.libre-riscv.org/show_bug.cgi?id=132 """ -- 2.30.2