Skip to content
Snippets Groups Projects
operation.py 2.35 KiB
Newer Older
  • Learn to ignore specific revisions
  • """@package docstring
    
    B-ASIC Operation Module.
    TODO: More info.
    """
    
    from numbers import Number
    
    from typing import List, Dict, Optional, Any, TYPE_CHECKING
    
    from b_asic.graph_component import GraphComponent
    
    
    if TYPE_CHECKING:
    	from b_asic.port import InputPort, OutputPort
    	from b_asic.simulation import SimulationState
    
    	"""Operation interface.
    
    	TODO: More info.
    	"""
    
    	@abstractmethod
    
    	def inputs(self) -> "List[InputPort]":
    
    		"""Get a list of all input ports."""
    
    
    	@abstractmethod
    
    	def outputs(self) -> "List[OutputPort]":
    
    		"""Get a list of all output ports."""
    
    
    	@abstractmethod
    	def input_count(self) -> int:
    
    		"""Get the number of input ports."""
    
    
    	@abstractmethod
    	def output_count(self) -> int:
    
    		"""Get the number of output ports."""
    
    
    	@abstractmethod
    
    	def input(self, i: int) -> "InputPort":
    
    		"""Get the input port at index i."""
    
    
    	@abstractmethod
    
    	def output(self, i: int) -> "OutputPort":
    
    		"""Get the output port at index i."""
    
    
    	@abstractmethod
    	def params(self) -> Dict[str, Optional[Any]]:
    
    		"""Get a dictionary of all parameter values."""
    
    
    	@abstractmethod
    	def param(self, name: str) -> Optional[Any]:
    
    		"""Get the value of a parameter.
    
    		Returns None if the parameter is not defined.
    		"""
    
    
    	@abstractmethod
    	def set_param(self, name: str, value: Any) -> None:
    
    		"""Set the value of a parameter.
    
    		The parameter must be defined.
    		"""
    
    
    	@abstractmethod
    
    	def evaluate_outputs(self, state: "SimulationState") -> List[Number]:
    
    		"""Simulate the circuit until its iteration count matches that of the simulation state,
    
    		then return the resulting output vector.
    		"""
    
    
    	@abstractmethod
    
    	def split(self) -> "List[Operation]":
    
    		"""Split the operation into multiple operations.
    
    		If splitting is not possible, this may return a list containing only the operation itself.
    		"""
    
    	@abstractmethod
    	def neighbours(self) -> "List[Operation]":
    
    		"""Return all operations that are connected by signals to this operation.
    
    		If no neighbours are found this returns an empty list
    		"""