Module ariths_gen.multi_bit_circuits.others.popcount
Classes
class UnsignedPopCount (a: Bus,
adder: GeneralCircuit | None = None,
prefix: str = '',
name: str = 'popcnt',
**kwargs)-
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)Class representing unsigned popcount circuit.
Popcount circuit is a circuit that counts the number of 1s in a binary number.
Ancestors
Inherited members
GeneralCircuit:add_componentget_blif_code_flatget_blif_code_hierget_c_code_flatget_c_code_hierget_cgp_code_flatget_circuit_blifget_circuit_cget_circuit_defget_circuit_gatesget_circuit_vget_circuit_wire_indexget_circuit_wiresget_component_typesget_declaration_blifget_declaration_c_flatget_declaration_c_hierget_declaration_v_flatget_declaration_v_hierget_declarations_c_hierget_declarations_v_hierget_function_blif_flatget_function_block_blifget_function_block_cget_function_block_vget_function_blocks_blifget_function_blocks_cget_function_blocks_vget_function_out_blifget_function_out_c_flatget_function_out_c_hierget_function_out_python_flatget_function_out_v_flatget_function_out_v_hierget_hier_subcomponent_defget_includes_cget_init_c_flatget_init_c_hierget_init_python_flatget_init_v_flatget_init_v_hierget_instance_numget_invocation_blif_hierget_invocations_blif_hierget_multi_bit_componentsget_one_bit_componentsget_out_invocation_cget_out_invocation_vget_outputs_cgpget_parameters_cgpget_previous_componentget_prototype_blifget_prototype_cget_prototype_pythonget_prototype_vget_python_code_flatget_triplets_cgpget_unique_typesget_v_code_flatget_v_code_hiersave_wire_id