Fixed RCA by test
Some checks failed
CodeQL / Analyze (python) (push) Has been cancelled
BUILD / build (push) Has been cancelled
BUILD / test (push) Has been cancelled
BUILD / Python ${{ matrix.python-version }} test (3.10) (push) Has been cancelled
BUILD / Python ${{ matrix.python-version }} test (3.11) (push) Has been cancelled
BUILD / Python ${{ matrix.python-version }} test (3.7) (push) Has been cancelled
BUILD / Python ${{ matrix.python-version }} test (3.8) (push) Has been cancelled
BUILD / Python ${{ matrix.python-version }} test (3.9) (push) Has been cancelled
BUILD / documentation (push) Has been cancelled

This commit is contained in:
Lukas Plevac 2024-10-08 14:28:38 +02:00
parent 6132c3c449
commit c61244c966
2 changed files with 42 additions and 2 deletions

View File

@ -36,9 +36,9 @@ class FullAdder(ThreeInputOneBitCircuit):
self.add_component(obj_maji1)
# cout
obj_maji2 = Maji(c, a, b [False, False, False], prefix=self.prefix+"_maji"+str(self.get_instance_num(cls=Maji)), outid=1, parent_component=self)
obj_maji2 = Maji(c, a, b, [False, False, False], prefix=self.prefix+"_maji"+str(self.get_instance_num(cls=Maji)), outid=1, parent_component=self)
self.add_component(obj_maji2)
self.out.connect(1, obj_maji2)
self.out.connect(1, obj_maji2.out)
# sum
obj_maji3 = Maji(c, obj_maji1.out, obj_maji2.out, [False, False, True], prefix=self.prefix+"_maji"+str(self.get_instance_num(cls=Maji)), outid=0, parent_component=self)

40
tests/test_maji_adder.py Normal file
View File

@ -0,0 +1,40 @@
from io import StringIO
import os, sys
DIR_PATH = os.path.dirname(os.path.abspath(__file__))
sys.path.insert(0, os.path.join(DIR_PATH, '..'))
from ariths_gen.core.arithmetic_circuits import GeneralCircuit
from ariths_gen.multi_bit_circuits.adders import UnsignedRippleCarryAdder
from ariths_gen.wire_components import Bus
from ariths_gen.pdk import *
import os
class MultiMaji(GeneralCircuit):
def __init__(self, a: Bus, b: Bus, prefix: str = "", name: str = "maji", **kwargs):
super().__init__(prefix=prefix, name=name, out_N=a.N, inputs=[a, b], **kwargs)
self.out = Bus("out", a.N)
assert a.N == b.N
self.add = self.add_component(UnsignedRippleCarryAdder(a, b, prefix=self.prefix, name=f"u_rca{a.N}", inner_component=False))
self.out.connect_bus(connecting_bus=self.add.out)
# usage
if __name__ == "__main__":
maji = MultiMaji(Bus("a", 8), Bus("b", 8))
# try to test maji
for a in range(256):
for b in range(256):
testOut = maji(a, b)
expectedBus = (a + b) & 0xFF
if (expectedBus != testOut):
print(f"expexted {expectedBus} have {testOut}")
exit(1)
print("Test maji as Ripple Carry Adder OK")