mirror of
https://github.com/ehw-fit/ariths-gen.git
synced 2025-04-04 06:11:41 +01:00
test all
This commit is contained in:
parent
fffb928875
commit
f1303864ca
6
.testall.sh
Normal file
6
.testall.sh
Normal file
@ -0,0 +1,6 @@
|
||||
python generate_test.sh
|
||||
python generate_mac.sh
|
||||
cd tests
|
||||
bash test_mac.sh
|
||||
bash test_circuits.sh
|
||||
bash test_circuits_cgp.sh
|
37
test_gen.py
37
test_gen.py
@ -1,37 +0,0 @@
|
||||
|
||||
from ariths_gen.core.arithmetic_circuits import GeneralCircuit
|
||||
from ariths_gen.wire_components import Bus, Wire
|
||||
from ariths_gen.multi_bit_circuits.adders import UnsignedRippleCarryAdder
|
||||
from ariths_gen.multi_bit_circuits.multipliers import UnsignedArrayMultiplier
|
||||
|
||||
class MAC(GeneralCircuit):
|
||||
def __init__(self, A:Bus, B:Bus, R:Bus):
|
||||
self.prefix = "ma"
|
||||
super().__init__([A, B, R])
|
||||
assert A.N == B.N
|
||||
assert R.N == 2 * A.N
|
||||
|
||||
# Je zapotřebí zajistit ještě unikátnost jmen podkomponent a jejich vodičů pro správné generování
|
||||
mul_prefix = self.prefix + "_" + UnsignedArrayMultiplier(a=A, b=B).prefix + str(A.N)
|
||||
mul_a = Bus(prefix=f"{mul_prefix}_a", wires_list=A.bus)
|
||||
mul_b = Bus(prefix=f"{mul_prefix}_b", wires_list=B.bus)
|
||||
self.mul = self.add_component(UnsignedArrayMultiplier(a=mul_a, b=mul_b, prefix=mul_prefix))
|
||||
|
||||
add_prefix = self.prefix + "_" + UnsignedRippleCarryAdder(a=R, b=self.mul.out).prefix + str(R.N)
|
||||
add_a = Bus(prefix=f"{add_prefix}_a", N=self.mul.out.N)
|
||||
add_b = Bus(prefix=f"{add_prefix}_b", wires_list=R.bus)
|
||||
# Kvůli správnému generování je potřeba správně napojit vodiče mezi mul a add
|
||||
[add_a.connect(o, self.mul.out.get_wire(o), inserted_wire_desired_index=o) for o in range(0, self.mul.out.N)]
|
||||
|
||||
self.add = self.add_component(UnsignedRippleCarryAdder(a=add_a, b=add_b, prefix=add_prefix))
|
||||
|
||||
# Bylo potřeba upravit definici pro výstupní sběrnici (vázanou na název top level obvodu ("ma") a mající délku jako výstup z adderu)
|
||||
self.out = Bus(self.prefix+"_out", self.add.out.N)
|
||||
|
||||
# Nakonec je potřeba napojit výstup adderu na výstup mac
|
||||
[self.out.connect(o, self.add.out.get_wire(o), inserted_wire_desired_index=o) for o in range(0, self.out.N)]
|
||||
|
||||
# usage
|
||||
mymac = MAC(Bus("a",8), Bus("b", 8), Bus("acc", 16))
|
||||
mymac.get_v_code_hier(open("out.v", "w"))
|
||||
mymac.get_c_code_hier(open("out.c", "w"))
|
@ -8,7 +8,7 @@ test_circuit_mac () {
|
||||
|
||||
|
||||
for mode in "flat" "hier"; do
|
||||
echo -e "===== Testing \e[33m$circuit\e[0m ($mode) ======"
|
||||
echo -e "===== Testing \e[33mMAC\e[0m ($mode) ======"
|
||||
|
||||
g++ -std=c++11 -pedantic -g -std=c++11 -pedantic -DCNAME="$circuit" $type.c ../test_circuits/mac/mac_$mode.c -o tmp.exe
|
||||
if ./tmp.exe ; then
|
||||
|
Loading…
x
Reference in New Issue
Block a user