really annoying simulation bug, dont know whats going on
[ieee754fpu.git] / src /
2020-02-15 Luke Kenneth Casso... really annoying simulation bug, dont know whats going on
2020-02-15 Luke Kenneth Casso... clip shift amount
2020-02-15 Luke Kenneth Casso... comment partial results
2020-02-15 Luke Kenneth Casso... truncate partial result intermediate to width of partition
2020-02-15 Luke Kenneth Casso... make things a little clearer, do the select and the...
2020-02-15 Luke Kenneth Casso... reduce bitwidth of intermediate output
2020-02-15 Luke Kenneth Casso... reduce partial result width
2020-02-15 Luke Kenneth Casso... store partial result in signal otherwise it gets duplicated
2020-02-15 Luke Kenneth Casso... stop expression-repeating cascade
2020-02-15 Luke Kenneth Casso... limit shiftbits, partial results do not need to be...
2020-02-15 Luke Kenneth Casso... store shiftmask bits in temporary otherwise the express...
2020-02-15 Luke Kenneth Casso... make all signals resetless
2020-02-15 Luke Kenneth Casso... comment why shift mask exists
2020-02-15 Luke Kenneth Casso... whitespace
2020-02-15 Luke Kenneth Casso... remove out_intervals (unused)
2020-02-14 Luke Kenneth Casso... fix the shift-test to truncate b-input
2020-02-14 Luke Kenneth Casso... reduce range of b in shift test
2020-02-14 Michael Nolanre-add masking of the shift amount based on partition...
2020-02-14 Michael NolanMinor refactoring of part_shift_dynamic
2020-02-14 Michael NolanRefactor part_shift_dynamic.py
2020-02-14 Michael NolanReplace giant switch statement with mux chain
2020-02-14 Luke Kenneth Casso... add beginnings of shift unit test for partsig
2020-02-13 Luke Kenneth Casso... reduce width of temporary intermediates
2020-02-13 Luke Kenneth Casso... mention being a bit like the gt-combiner
2020-02-13 Luke Kenneth Casso... OR element in after the MUX because its an invariant
2020-02-13 Luke Kenneth Casso... store intermediate in temp, append that to output
2020-02-13 Luke Kenneth Casso... experiment looking for minimum shift width
2020-02-13 Luke Kenneth Casso... limit matrix output width and limit shift amount
2020-02-13 Luke Kenneth Casso... use different style of output concatenation, reduce...
2020-02-12 Michael NolanEliminate unused entries in shift matrix
2020-02-12 Michael NolanReduce width of b operand to minimum size needed
2020-02-12 Michael NolanExpand proof_shift_dynamic to 32 bits
2020-02-12 Luke Kenneth Casso... comment the dynamic shifter
2020-02-12 Michael NolanRename part_shift_scalar/ to part_shift
2020-02-12 Michael NolanAdd formal proof for dynamic shifter
2020-02-12 Michael NolanSomewhat working dynamic shifter
2020-02-12 Michael NolanFix whitespace
2020-02-12 Michael NolanBegin adding dynamic shifter
2020-02-12 Luke Kenneth Casso... add bit of extra explanatory comment for carry-ripple...
2020-02-12 Michael NolanRevise documentation for how carry works in adder.py
2020-02-11 Luke Kenneth Casso... allow factor of 2 in variance on random numbers
2020-02-11 Luke Kenneth Casso... test fp downconvert on min and normal numbers, +/-...
2020-02-11 Luke Kenneth Casso... add range-focussed fp64/32-to-32/16 downconversion...
2020-02-11 Michael NolanRudimentary working partitioned scalar shifter
2020-02-11 Michael NolanBegin adding partitioned scalar shifter
2020-02-10 Luke Kenneth Casso... document partsig operators
2020-02-10 Michael NolanFix line length
2020-02-10 Michael NolanFix carry output of adder/subtracter
2020-02-10 Michael NolanFix flake8 errors in part_cmp/
2020-02-10 Michael NolanFix flake8 errors in partsig.py
2020-02-10 Michael NolanFix flake8 errors in test_partsig
2020-02-10 Michael NolanMinor cleanup
2020-02-10 Michael NolanAdd neg operator to partsig.py
2020-02-10 Michael NolanAdd subtraction to partsig.py
2020-02-10 Luke Kenneth Casso... bug #113, add range-limited random numbers more likely...
2020-02-10 Luke Kenneth Casso... getting fed up of amount of test files being dropped...
2020-02-09 Luke Kenneth Casso... move nmutil to separate (dependent) library
2020-02-09 Luke Kenneth Casso... invert after all() not before
2020-02-09 Luke Kenneth Casso... boolean logic invert bool to all
2020-02-09 Luke Kenneth Casso... replace ~bool() with all()
2020-02-09 Luke Kenneth Casso... use nmigen all() instead of invert-invert bool()
2020-02-09 Luke Kenneth Casso... whitespace
2020-02-09 Luke Kenneth Casso... give a_bit proper name, make reset_less
2020-02-09 Luke Kenneth Casso... add docstring explaining partitioned-add
2020-02-09 Luke Kenneth Casso... add MoveMSBDown class to be used in carry-out
2020-02-09 Luke Kenneth Casso... add placeholder for test sub in partsig
2020-02-09 Luke Kenneth Casso... add 100 random integer tests to partitioned add
2020-02-09 Luke Kenneth Casso... add 100 random integer tests to partitioned add
2020-02-09 Luke Kenneth Casso... use nmigen "implies" operator (really convenient)
2020-02-09 Luke Kenneth Casso... whitespace cleanup, reduce 80 char length
2020-02-09 Luke Kenneth Casso... add NotImplementedError into partsig
2020-02-09 Michael NolanConvert partsig to use the existing add_op function
2020-02-09 Michael NolanAdd rudimentary test for partitioned add with carry
2020-02-09 Michael NolanAdd carry out to adder
2020-02-09 Michael NolanBegin adding carry in and carry out support to adder
2020-02-08 Luke Kenneth Casso... minor codeshuffle, split out check of PartitionedSignal...
2020-02-08 Luke Kenneth Casso... add comments
2020-02-07 Luke Kenneth Casso... tidyup PartitionedAdd
2020-02-07 Luke Kenneth Casso... add shift operators TODO on partsig
2020-02-07 Luke Kenneth Casso... comment TODO on __neg__ operation
2020-02-07 Luke Kenneth Casso... invert partitioned op is just a bit-wise invert
2020-02-07 Luke Kenneth Casso... update docstring and copyright notice
2020-02-07 Luke Kenneth Casso... fix muxop test in part_sig test
2020-02-07 Luke Kenneth Casso... fix part_mux to actually use Mux (duh)
2020-02-07 Michael NolanRemove unneeded and gate in gt_combiner
2020-02-07 Luke Kenneth Casso... fix syntax errors for test_partsig
2020-02-07 Luke Kenneth Casso... grr correct syntax for assert
2020-02-07 Michael NolanFix != implementation in partsig.py
2020-02-07 Michael NolanModify test_partsig to handle the new changes to reorde...
2020-02-07 Michael Nolanmodify reorder_bits to copy the MSB of the partition...
2020-02-07 Luke Kenneth Casso... add unit test for part_mux
2020-02-07 Luke Kenneth Casso... whoops syntax error
2020-02-07 Luke Kenneth Casso... add first version of part_mux
2020-02-07 Luke Kenneth Casso... use assert not raise ValueError
2020-02-07 Luke Kenneth Casso... ripple of LSB from compare-operations, successful
2020-02-07 Luke Kenneth Casso... add first (untested) version of ripple-LSB
2020-02-07 Luke Kenneth Casso... add extra operators to be implemented to partsig
2020-02-06 Luke Kenneth Casso... add stub operators to partsig to help make it clear...
2020-02-06 Luke Kenneth Casso... TODO on NE partsig op
2020-02-06 Luke Kenneth Casso... make common function for testing comparators
next