rename inputs_ to terms_
[ieee754fpu.git] / src / ieee754 / part_mul_add / multiply.py
2019-08-17 Luke Kenneth Casso... move local variables
2019-08-17 Luke Kenneth Casso... remove redundant code
2019-08-17 Luke Kenneth Casso... or data together through a module (reduce top-level...
2019-08-17 Luke Kenneth Casso... create array of ProductTerms - reduces graphviz MASSIVELY
2019-08-17 Luke Kenneth Casso... move intermediate output to new module
2019-08-17 Luke Kenneth Casso... delayed_part_ops is a local
2019-08-17 Luke Kenneth Casso... add name to Term output
2019-08-17 Luke Kenneth Casso... move bit selection into ProductTerms: simplifies graph
2019-08-17 Luke Kenneth Casso... split out "Parts" to separate module
2019-08-17 Luke Kenneth Casso... move remaining 4 terms, use Term class
2019-08-17 Luke Kenneth Casso... derive new class Term and ProductTerm
2019-08-17 Luke Kenneth Casso... use Cat (again) on intermediate values
2019-08-17 Luke Kenneth Casso... simplify sign/term bits using Cat
2019-08-17 Luke Kenneth Casso... move product terms to separate module (Term)
2019-08-17 Luke Kenneth Casso... add new Terms class, get part_pts into intermediary
2019-08-17 Luke Kenneth Casso... part replaced by bit_select
2019-08-17 Luke Kenneth Casso... whoops, a-enabled and b-enabled swapped
2019-08-17 Luke Kenneth Casso... stash intermediaries for output into temp signals
2019-08-17 Luke Kenneth Casso... assignment in Cat wrong way round
2019-08-17 Luke Kenneth Casso... use reset_less
2019-08-17 Luke Kenneth Casso... whoops use already-used list
2019-08-17 Luke Kenneth Casso... boolean logic inversion, x = ~a & ~b & ~c ==> ~(a ...
2019-08-17 Luke Kenneth Casso... concatenate parts using list then Cat() - again, simpli...
2019-08-17 Luke Kenneth Casso... a_enabled and b_enabled into signals
2019-08-17 Luke Kenneth Casso... add intermediate values as signals
2019-08-17 Luke Kenneth Casso... move variable to pyi file
2019-08-17 Luke Kenneth Casso... store mask in intermediary
2019-08-17 Luke Kenneth Casso... use Cat instead of for-loops: cleans up the yosys graph...
2019-08-17 Luke Kenneth Casso... move typing to multiplier.pyi
2019-08-17 Luke Kenneth Casso... add partitioned multiplier/adder