Module ariths_gen.multi_bit_circuits.others.popcount
Classes
class UnsignedPopCount (a: Bus,
adder: GeneralCircuit | None = None,
prefix: str = '',
name: str = 'popcnt',
**kwargs)-
Class representing unsigned popcount circuit.
Popcount circuit is a circuit that counts the number of 1s in a binary number.
Expand source code
class UnsignedPopCount(GeneralCircuit): """Class representing unsigned popcount circuit. Popcount circuit is a circuit that counts the number of 1s in a binary number. """ def __init__(self, a: Bus, adder : Optional[GeneralCircuit] = None, prefix : str = "", name : str = "popcnt", **kwargs): self.N = a.N outc = ceil(log2(self.N + 1)) #print("outc", outc) super().__init__(name=name, prefix=prefix, inputs=[a], out_N=outc) self.a.bus_extend(2**(outc - 1), prefix=a.prefix) #print(self.a) self.adder = adder if not self.adder: self.adder = UnsignedRippleCarryAdder # tree reduction def create_tree(a: Bus, depth: int, branch="A"): #print(a) if a.N == 1: return a else: half = a.N // 2 b_in = Bus(N=half, prefix=f"b_inn{branch}_{depth}A") c_in = Bus(N=a.N - half, prefix=f"c_inn{branch}_{depth}B") #print(a, half, a.N) for i, j in enumerate(range(half)): b_in.connect(i, a.get_wire(j)) for i, j in enumerate(range(half, a.N)): c_in.connect(i, a.get_wire(j)) b = create_tree(b_in, depth=depth + 1, branch = branch + "A") c = create_tree(c_in, depth= depth + 1, branch = branch + "B") d = self.adder(a=b, b=c, prefix = f"{self.prefix}_add{branch}_{depth}", inner_component=True, parent_component=self) self.add_component(d) return d.out sumbus = create_tree(self.a,0, "X") #print(sumbus) self.out.connect_bus(sumbus)
Ancestors
Inherited members
GeneralCircuit
:add_component
get_blif_code_flat
get_blif_code_hier
get_c_code_flat
get_c_code_hier
get_cgp_code_flat
get_circuit_blif
get_circuit_c
get_circuit_def
get_circuit_gates
get_circuit_v
get_circuit_wire_index
get_circuit_wires
get_component_types
get_declaration_blif
get_declaration_c_flat
get_declaration_c_hier
get_declaration_v_flat
get_declaration_v_hier
get_declarations_c_hier
get_declarations_v_hier
get_function_blif_flat
get_function_block_blif
get_function_block_c
get_function_block_v
get_function_blocks_blif
get_function_blocks_c
get_function_blocks_v
get_function_out_blif
get_function_out_c_flat
get_function_out_c_hier
get_function_out_python_flat
get_function_out_v_flat
get_function_out_v_hier
get_hier_subcomponent_def
get_includes_c
get_init_c_flat
get_init_c_hier
get_init_python_flat
get_init_v_flat
get_init_v_hier
get_instance_num
get_invocation_blif_hier
get_invocations_blif_hier
get_multi_bit_components
get_one_bit_components
get_out_invocation_c
get_out_invocation_v
get_outputs_cgp
get_parameters_cgp
get_previous_component
get_prototype_blif
get_prototype_c
get_prototype_python
get_prototype_v
get_python_code_flat
get_triplets_cgp
get_unique_types
get_v_code_flat
get_v_code_hier
save_wire_id