accelforge.frontend.arch package#
Submodules#
accelforge.frontend.arch.arch module#
- class accelforge.frontend.arch.arch.Arch[source]#
Bases:
HierarchicalTop-level architecture specification.
All attributes in the architecture can refrence variables in the spec-level variables field as well as symbols from the individual Einsum being processed.
- extra_attributes_for_all_component_models: EvalExtras = EvalExtras()#
Extra attributes to pass to all component models. This can be used to pass global attributes, such as technology node or clock period, to every component model.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- find_spatial(name, return_spatialable=False)[source]#
Find a spatial dimension by name. Raises an error if zero or more than one spatial dimension has the given name.
- Parameters:
- Return type:
- Returns:
Spatial – The spatial dimension with the given name if return_spatialable is False.
tuple[Spatialable, Spatial] – The node and spatial dimension with the given name if return_spatialable is True.
- Raises:
ValueError – If no spatial dimension with the given name exists, or if more than one spatial dimension with the given name exists.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- property per_component_total_area: dict[str, float]#
Returns the total area used by each component in the architecture in m^2.
- property per_component_total_leak_power: dict[str, float]#
Returns the total leak power of each component in the architecture in W.
- to_yaml(f=None)#
Dump the model to a YAML string.
- property total_area: float#
Returns the total area of the architecture in m^2.
- Returns:
The total area of the architecture in m^2.
- Return type:
- property total_leak_power: float#
Returns the total leak power of the architecture in W.
- Returns:
The total leak power of the architecture in W.
- Return type:
- variables: EvalExtras = EvalExtras()#
Like the spec-level variables field, this field is evaluated first and its contents can be referenced elsewhere in the architecture. Unlike the spec-level variables field, this, like ther rest of the architecture, is evaluated per-Einsum and can reference Einsum-specific symbols.
accelforge.frontend.arch.components module#
- class accelforge.frontend.arch.components.Action[source]#
Bases:
EvalableModelAn action that may be performed by a component.
- energy: EvalsTo[int | float | None] = None#
Dynamic energy of this action. Per-action energy is multiplied by the component’s energy_scale and the action’s energy_scale.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this action. Multiplies this action’s energy by this value.
- extra_attributes_for_component_model: EvalExtras = EvalExtras()#
Extra attributes to pass to the component model. In addition to all attributes of this action, any extra attributes will be passed to the component model as arguments to the component model’s action. This can be used to define attributes that are known to the component model, but not accelforge, such as clock frequency.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- latency: EvalsTo[int | float | None] = None#
Latency of this action. Per-action latency is multiplied by the component’s latency_scale and the action’s latency_scale.
- class accelforge.frontend.arch.components.Component[source]#
Bases:
SpatialableA component object in the architecture. This is overridden by different component types, such as Memory and Compute.
- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- area: EvalsTo[int | float | None] = None#
The area of a single instance of this component in m^2. If set, area calculations will use this value.
- area_scale: EvalsTo[int | float] = 1#
The scale factor for the area of this comxponent. This is used to scale the area of this component. For example, if the area is 1 m^2 and the scale factor is 2, then the area is 2 m^2.
- calculate_action_energy(component_models=None, in_place=False)[source]#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)[source]#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)[source]#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)[source]#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)[source]#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- component_class: str | None = None#
The class of this Component. Used if an energy or area model needs to be called for this Component.
- component_model: ComponentModel | None = None#
The model to use for this Component. If not set, the model will be found with hwcomponents.get_models(). If set, the component_class will be ignored.
- component_modeling_log: list[str] = []#
A log of the energy and area calculations for this Component.
- enabled: TryEvalTo[bool] = True#
Whether this component is enabled. If the expression resolves to False, then the component is disabled. This is evaluated per-pmapping-template, so it is a function of the tensors in the current Einsum. For example, you may say len(All) >= 3 and the component will only be enabled with Einsums with three or more tensors.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this component. For each action, multiplies this action’s energy. Multiplies the calculated energy of each action.
- extra_attributes_for_component_model: _ExtraAttrs = _ExtraAttrs()#
Extra attributes to pass to the component model. In addition to all attributes of this component, any extra attributes will be passed to the component model. This can be used to define attributes that are known to the component model, but not accelforge, such as the technology node.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)[source]#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- latency_scale: EvalsTo[int | float] = 1#
The scale factor for the latency of this component. This is used to scale the latency of this component. For example, if the latency is 1 ns and the scale factor is 2, then the latency is 2 ns. Multiplies the calculated latency of each action.
- leak_power: EvalsTo[int | float | None] = None#
The leak power of a single instance of this component in W. If set, leak power calculations will use this value.
- leak_power_scale: EvalsTo[int | float] = 1#
The scale factor for the leak power of this component. This is used to scale the leak power of this component. For example, if the leak power is 1 W and the scale factor is 2, then the leak power is 2 W.
- n_parallel_instances: EvalsTo[int | float] = 1#
The number of parallel instances of this component. Increasing parallel instances will proportionally increase area and leakage, while reducing latency (unless latency calculation is overridden).
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)[source]#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- to_yaml(f=None)#
Dump the model to a YAML string.
- total_area: EvalsTo[int | float | None] = None#
The total area of all instances of this component in m^2. Do not set this value. It is calculated when the architecture’s area is calculated.
- total_latency: str | int | float = 'sum(*action2latency.values())'#
An expression representing the total latency of this component in seconds. This is used to calculate the latency of a given Einsum. Special variables available are the following:
min: The minimum value of all arguments to the expression.
max: The maximum value of all arguments to the expression.
sum: The sum of all arguments to the expression.
X_actions: The number of times action X is performed. For example, read_actions is the number of times the read action is performed.
X_latency: The total latency of all actions of type X. For example, read_latency is the total latency of all read actions. It is equal to the per-read latency multiplied by the number of read actions.
action2latency: A dictionary of action names to their latency.
Additionally, all component attributes are availble as variables, and all other functions generally available in parsing. Note this expression is evaluated after other component attributes are evaluated.
For example, the following expression calculates latency assuming that each read or write action takes 1ns:
1e-9 * (read_actions + write_actions).
- class accelforge.frontend.arch.components.Compute[source]#
-
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- class accelforge.frontend.arch.components.Container[source]#
Bases:
Leaf,SpatialableCreates a container, used to conveniently define spatial arrays, and doesn’t do anything else.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.components.Memory[source]#
Bases:
TensorHolderA Memory is a TensorHolder that stores data over time, allowing for temporal reuse.
- actions: EvalableList[TensorHolderAction]#
The actions that this Memory can perform.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- class accelforge.frontend.arch.components.Network[source]#
-
Defines a network component.
The routing is currently defined using the mapping, the routing follows the order of the spatial nodes from top to bottom.
- bits_per_action: EvalsTo[int | float | None] = None#
The number of bits accessed in each of this component’s actions. Overridden by bits_per_action in any action of this component. If set here, acts as a default value for the bits_per_action of all actions of this component.
- bits_per_value: EvalsTo[dict] = {}#
Sets the bits per value for tensors in this TensorHolder. Keys are evaluated as expressions and may reference one or more tensors. Tensors not listed use the workload’s bits_per_value.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- class accelforge.frontend.arch.components.TensorHolder[source]#
-
A TensorHolder is a component that holds tensors. These are usually Memories, but can also be Tolls.
- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- actions: EvalableList[TensorHolderAction]#
The actions that this TensorHolder can perform.
- bits_per_action: EvalsTo[int | float | None] = None#
The number of bits accessed in each of this component’s actions. Overridden by bits_per_action in any action of this component. If set here, acts as a default value for the bits_per_action of all actions of this component.
- bits_per_value: EvalsTo[dict] = {}#
Sets the bits per value for tensors in this TensorHolder. Keys are evaluated as expressions and may reference one or more tensors. Tensors not listed use the workload’s bits_per_value.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- class accelforge.frontend.arch.components.TensorHolderAction[source]#
Bases:
Action- bits_per_action: EvalsTo[int | float] = '1 if bits_per_action is None else bits_per_action'#
The number of bits accessed in this action. For example, setting bits_per_action to 16 means that each call to this action yields 16 bits.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- class accelforge.frontend.arch.components.Tensors[source]#
Bases:
EvalableModelFields that control which tensor(s) are kept in a
TensorHolderand in what order their nodes may appear in the mapping.- back: TryEvalTo[InvertibleSet[str]] = 'Nothing'#
A set expression describing which tensors must be backed by this
accelforge.frontend.arch.TensorHolder. If this is not defined, then no tensors must be backed.
- force_memory_hierarchy_order: bool = True#
If set to true, storage nodes for lower-level memories must be placed below storage nodes for higher-level memories. For example, all MainMemory storage nodes must go above all LocalBuffer storage nodes.
This constraint always applies to same-tensor storage nodes (e.g., MainMemory reusing Output must go above LocalBuffer reusing Output); turning it off will permit things like MainMemory reusing Output going above LocalBuffer reusing Input.
This is identical to the force_memory_hierarchy_order field in the FFM class, but only applies to this tensor holder.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- keep: TryEvalTo[InvertibleSet[str]] = '<Defaults to Nothing>'#
A set expression describing which tensors must be kept in this
accelforge.frontend.arch.TensorHolder. If this is not defined, then all tensors must be kept. Any tensors that are inbackwill also be added tokeep.
- may_keep: TryEvalTo[InvertibleSet[str]] = '<Nothing if keep is defined, else All>'#
A set expression describing which tensors may optionally be kept in this
accelforge.frontend.arch.TensorHolder. The mapper will explore both keeping and not keeping each of these tensors. If this is not defined, then all tensors may be kept.
- no_refetch_from_above: TryEvalTo[InvertibleSet[str]] = '~All'#
The tensors that are not allowed to be refetched from above. This is given as a set of
TensorNameobjects or a set expression that resolves to them. These tensors must be fetched at most one time from above memories, and may not be refetched across any temporal or spatial loop iterations. Tensors may be fetched in pieces (if they do not cause re-fetches of any piece).
- no_resend_to_below: TryEvalTo[InvertibleSet[str]] = '~All'#
The tensors that are not allowed to be refetched to below. This is given as a set of
TensorNameobjects or a set expression that resolves to them. These tensors must be fetched at most one time from this memory to below memories, and may not be refetched across any temporal or spatial loop iterations. Tensors may be fetched in pieces (if they do not cause re-fetches of any piece).
- tensor_order_options: EvalableList[EvalableList[TryEvalTo[InvertibleSet[str]]]] = []#
Options for the order of tensor storage nodes in the mapping. This is given as a list-of-lists-of-sets. Each list-of-sets is a valid order of tensor storage nodes. Order is given from highest in the mapping to lowest.
For example, an option could be [input | output, weight], which means that there is no relative ordering required between input and output, but weight must be below both.
- tile_shape: EvalableList[Comparison] = []#
The tile shape for each rank variable. This is given as a list of
Comparisonobjects, where each comparison must evaluate to True for a valid mapping.
- class accelforge.frontend.arch.components.Toll[source]#
Bases:
TensorHolderA Toll is a TensorHolder that does not store data over time, and therefore does not allow for temporal reuse. Use this as a toll that charges reads and writes every time a piece of data moves through it.
Every write to a Toll is immediately written to the next Memory (which may be above or below depending on where the write came from), and same for reads.
The access counts of a Toll are only included in the “read” action. Each traversal through the Toll is counted as a read. Writes are always zero.
- actions: EvalableList[TensorHolderAction]#
The actions that this Toll can perform.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- direction: TryEvalTo[dict]#
The direction in which data flows through this Toll. Can be:
A string:
"up","down", or"up_and_down"— applies to all tensors.A dict mapping tensor expressions to direction strings, e.g.
{input: "down", output: "up"}— sets direction per tensor.
If “up”, then data flows from below TensorHolder, through this Toll (plus paying associated costs), and then to the next TensorHolder above it. Other data movements are assumed to avoid this Toll.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
accelforge.frontend.arch.constraints module#
- class accelforge.frontend.arch.constraints.Comparison[source]#
Bases:
EvalableModelA comparison between a rank variable’s bound and a value. A comparison is performed for each rank variable.
The LHS of each comparison is the loop bound of a loop that affects this rank variable. The RHS is the given value.
For example, if the expression resolves to [a, b], the operator is “<=”, and the value is 10, and we have loops “for a0 in [0..A0)” and “for b0 in [0..B0)”, then a mapping is only valid if A0 <= 10 and B0 <= 10.
- expression: TryEvalTo[InvertibleSet[str]]#
The expression to compare. This expression should resolve to a set of rank variables. A comparison is performed for each rank variable independently, and the result passes if and only if all comparisons pass. The LHS of each comparison is the loop bound of a loop that affects this rank variable. The RHS is the given value.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- operator: str#
The operator to use for the comparison. Supported operators are: - == (equal to) - <= (less than or equal to) - >= (greater than or equal to) - < (less than) - > (greater than) - product== (product of all loop bounds is equal to) - product<= (product of all loop bounds is less than or equal to) - product>= (product of all loop bounds is greater than or equal to) - product< (product of all loop bounds is less than) - product> (product of all loop bounds is greater than)
- to_yaml(f=None)#
Dump the model to a YAML string.
accelforge.frontend.arch.spatialable module#
- class accelforge.frontend.arch.spatialable.Spatial[source]#
Bases:
EvalableModelA one-dimensional spatial fanout in the architecture.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- loop_bounds: EvalableList[Comparison] = []#
Bounds for loops over this dimension. This is a list of
Comparisonobjects, all of which must be satisfied by the loops to which this constraint applies.Note: Loops may be removed if they are constrained to only one iteration.
- may_reuse: TryEvalTo[InvertibleSet[str]] = 'All'#
The tensors that can be reused spatially across instances of this fanout. This expression will be evaluated for each mapping template.
- min_usage: EvalsTo[int | float] = 0.0#
The minimum usage of spatial instances, as a value from 0 to 1. A mapping is invalid if less than this porportion of this dimension’s fanout is utilized. Mappers that support it (e.g., FFM) may, if no mappings satisfy this constraint, return the highest-usage mappings. These constraints are disabled for copy Einsums.
- power_gateable: EvalsTo[bool] = False#
Whether this spatial fanout has power gating. If True, then unused spatial instances will be power gated if not used by a particular Einsum.
- reuse: TryEvalTo[InvertibleSet[str]] = 'Nothing'#
A set of tensors or a set expression representing tensors that must be reused across spatial iterations. Spatial loops may only be placed that reuse ALL tensors given here.
Note: Loops may be removed if they do not reuse a tensor given here and they do not appear in another loop bound constraint.
- to_yaml(f=None)#
Dump the model to a YAML string.
- class accelforge.frontend.arch.spatialable.Spatialable[source]#
Bases:
EvalableModelSomething that can be duplicated to create an array of.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
accelforge.frontend.arch.structure module#
- class accelforge.frontend.arch.structure.ArchNode[source]#
Bases:
EvalableModelA node in the architecture.
- find(name, default=_FIND_SENTINEL)[source]#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)[source]#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- is_above(node_a, node_b)[source]#
Returns whether node_a is above node_b in a hierarchy.
- Return type:
- class accelforge.frontend.arch.structure.ArchNodes[source]#
Bases:
EvalableListA list of ArchNodes.
- class accelforge.frontend.arch.structure.Array[source]#
Bases:
Branch,Spatialable- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.structure.Branch[source]#
Bases:
ArchNode- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- nodes: ArchNodes[Annotated[Annotated[Compute, Tag(tag=Compute)] | Annotated[Memory, Tag(tag=Memory)] | Annotated[Toll, Tag(tag=Toll)] | Annotated[Container, Tag(tag=Container)] | Annotated[Network, Tag(tag=Network)] | Annotated[Hierarchical, Tag(tag=Hierarchical)] | Annotated[Array, Tag(tag=Array)] | Annotated[Fork, Tag(tag=Fork)], Discriminator(discriminator=_get_tag, custom_error_type=None, custom_error_message=None, custom_error_context=None)]] = ArchNodes([])#
- class accelforge.frontend.arch.structure.Fork[source]#
Bases:
HierarchicalA Fork is a Hierarchical that branches off from the main path. The nodes inside the Fork are a separate branch, while the main path continues to the next sibling after the Fork.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- forked_power_gateable: bool = False#
Whether the child branch (the nodes inside this Fork) can be power gated when the main branch is active. If True, these nodes will not leak when the main branch is being used.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.structure.Hierarchical[source]#
Bases:
Branch- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.structure.Leaf[source]#
Bases:
ArchNodeA leaf node in the architecture. This is an abstract class that represents any node that is not a Branch.
- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
Module contents#
- class accelforge.frontend.arch.Action[source]#
Bases:
EvalableModelAn action that may be performed by a component.
- energy: EvalsTo[int | float | None] = None#
Dynamic energy of this action. Per-action energy is multiplied by the component’s energy_scale and the action’s energy_scale.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this action. Multiplies this action’s energy by this value.
- extra_attributes_for_component_model: EvalExtras = EvalExtras()#
Extra attributes to pass to the component model. In addition to all attributes of this action, any extra attributes will be passed to the component model as arguments to the component model’s action. This can be used to define attributes that are known to the component model, but not accelforge, such as clock frequency.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- latency: EvalsTo[int | float | None] = None#
Latency of this action. Per-action latency is multiplied by the component’s latency_scale and the action’s latency_scale.
- class accelforge.frontend.arch.Arch[source]#
Bases:
HierarchicalTop-level architecture specification.
All attributes in the architecture can refrence variables in the spec-level variables field as well as symbols from the individual Einsum being processed.
- extra_attributes_for_all_component_models: EvalExtras = EvalExtras()#
Extra attributes to pass to all component models. This can be used to pass global attributes, such as technology node or clock period, to every component model.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- find_spatial(name, return_spatialable=False)[source]#
Find a spatial dimension by name. Raises an error if zero or more than one spatial dimension has the given name.
- Parameters:
- Return type:
- Returns:
Spatial – The spatial dimension with the given name if return_spatialable is False.
tuple[Spatialable, Spatial] – The node and spatial dimension with the given name if return_spatialable is True.
- Raises:
ValueError – If no spatial dimension with the given name exists, or if more than one spatial dimension with the given name exists.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- nodes: ArchNodes[Annotated[Annotated['Compute', Tag('Compute')] | Annotated['Memory', Tag('Memory')] | Annotated['Toll', Tag('Toll')] | Annotated['Container', Tag('Container')] | Annotated['Network', Tag('Network')] | Annotated['Hierarchical', Tag('Hierarchical')] | Annotated['Array', Tag('Array')] | Annotated['Fork', Tag('Fork')], Discriminator(_get_tag)]] = ArchNodes([])#
- property per_component_total_area: dict[str, float]#
Returns the total area used by each component in the architecture in m^2.
- property per_component_total_leak_power: dict[str, float]#
Returns the total leak power of each component in the architecture in W.
- to_yaml(f=None)#
Dump the model to a YAML string.
- property total_area: float#
Returns the total area of the architecture in m^2.
- Returns:
The total area of the architecture in m^2.
- Return type:
- property total_leak_power: float#
Returns the total leak power of the architecture in W.
- Returns:
The total leak power of the architecture in W.
- Return type:
- variables: EvalExtras = EvalExtras()#
Like the spec-level variables field, this field is evaluated first and its contents can be referenced elsewhere in the architecture. Unlike the spec-level variables field, this, like ther rest of the architecture, is evaluated per-Einsum and can reference Einsum-specific symbols.
- class accelforge.frontend.arch.ArchNode[source]#
Bases:
EvalableModelA node in the architecture.
- find(name, default=_FIND_SENTINEL)[source]#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)[source]#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- is_above(node_a, node_b)[source]#
Returns whether node_a is above node_b in a hierarchy.
- Return type:
- class accelforge.frontend.arch.Array[source]#
Bases:
Branch,Spatialable- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- nodes: ArchNodes[Annotated[Annotated['Compute', Tag('Compute')] | Annotated['Memory', Tag('Memory')] | Annotated['Toll', Tag('Toll')] | Annotated['Container', Tag('Container')] | Annotated['Network', Tag('Network')] | Annotated['Hierarchical', Tag('Hierarchical')] | Annotated['Array', Tag('Array')] | Annotated['Fork', Tag('Fork')], Discriminator(_get_tag)]] = ArchNodes([])#
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
- class accelforge.frontend.arch.Branch[source]#
Bases:
ArchNode- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- nodes: ArchNodes[Annotated[Annotated[Compute, Tag(tag=Compute)] | Annotated[Memory, Tag(tag=Memory)] | Annotated[Toll, Tag(tag=Toll)] | Annotated[Container, Tag(tag=Container)] | Annotated[Network, Tag(tag=Network)] | Annotated[Hierarchical, Tag(tag=Hierarchical)] | Annotated[Array, Tag(tag=Array)] | Annotated[Fork, Tag(tag=Fork)], Discriminator(discriminator=_get_tag, custom_error_type=None, custom_error_message=None, custom_error_context=None)]] = ArchNodes([])#
- class accelforge.frontend.arch.Comparison[source]#
Bases:
EvalableModelA comparison between a rank variable’s bound and a value. A comparison is performed for each rank variable.
The LHS of each comparison is the loop bound of a loop that affects this rank variable. The RHS is the given value.
For example, if the expression resolves to [a, b], the operator is “<=”, and the value is 10, and we have loops “for a0 in [0..A0)” and “for b0 in [0..B0)”, then a mapping is only valid if A0 <= 10 and B0 <= 10.
- expression: TryEvalTo[InvertibleSet[str]]#
The expression to compare. This expression should resolve to a set of rank variables. A comparison is performed for each rank variable independently, and the result passes if and only if all comparisons pass. The LHS of each comparison is the loop bound of a loop that affects this rank variable. The RHS is the given value.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- operator: str#
The operator to use for the comparison. Supported operators are: - == (equal to) - <= (less than or equal to) - >= (greater than or equal to) - < (less than) - > (greater than) - product== (product of all loop bounds is equal to) - product<= (product of all loop bounds is less than or equal to) - product>= (product of all loop bounds is greater than or equal to) - product< (product of all loop bounds is less than) - product> (product of all loop bounds is greater than)
- to_yaml(f=None)#
Dump the model to a YAML string.
- class accelforge.frontend.arch.Component[source]#
Bases:
SpatialableA component object in the architecture. This is overridden by different component types, such as Memory and Compute.
- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- area: EvalsTo[int | float | None] = None#
The area of a single instance of this component in m^2. If set, area calculations will use this value.
- area_scale: EvalsTo[int | float] = 1#
The scale factor for the area of this comxponent. This is used to scale the area of this component. For example, if the area is 1 m^2 and the scale factor is 2, then the area is 2 m^2.
- calculate_action_energy(component_models=None, in_place=False)[source]#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)[source]#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)[source]#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)[source]#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)[source]#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- component_class: str | None = None#
The class of this Component. Used if an energy or area model needs to be called for this Component.
- component_model: ComponentModel | None = None#
The model to use for this Component. If not set, the model will be found with hwcomponents.get_models(). If set, the component_class will be ignored.
- component_modeling_log: list[str] = []#
A log of the energy and area calculations for this Component.
- enabled: TryEvalTo[bool] = True#
Whether this component is enabled. If the expression resolves to False, then the component is disabled. This is evaluated per-pmapping-template, so it is a function of the tensors in the current Einsum. For example, you may say len(All) >= 3 and the component will only be enabled with Einsums with three or more tensors.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this component. For each action, multiplies this action’s energy. Multiplies the calculated energy of each action.
- extra_attributes_for_component_model: _ExtraAttrs = _ExtraAttrs()#
Extra attributes to pass to the component model. In addition to all attributes of this component, any extra attributes will be passed to the component model. This can be used to define attributes that are known to the component model, but not accelforge, such as the technology node.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)[source]#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- latency_scale: EvalsTo[int | float] = 1#
The scale factor for the latency of this component. This is used to scale the latency of this component. For example, if the latency is 1 ns and the scale factor is 2, then the latency is 2 ns. Multiplies the calculated latency of each action.
- leak_power: EvalsTo[int | float | None] = None#
The leak power of a single instance of this component in W. If set, leak power calculations will use this value.
- leak_power_scale: EvalsTo[int | float] = 1#
The scale factor for the leak power of this component. This is used to scale the leak power of this component. For example, if the leak power is 1 W and the scale factor is 2, then the leak power is 2 W.
- n_parallel_instances: EvalsTo[int | float] = 1#
The number of parallel instances of this component. Increasing parallel instances will proportionally increase area and leakage, while reducing latency (unless latency calculation is overridden).
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)[source]#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
- to_yaml(f=None)#
Dump the model to a YAML string.
- total_area: EvalsTo[int | float | None] = None#
The total area of all instances of this component in m^2. Do not set this value. It is calculated when the architecture’s area is calculated.
- total_latency: str | int | float = 'sum(*action2latency.values())'#
An expression representing the total latency of this component in seconds. This is used to calculate the latency of a given Einsum. Special variables available are the following:
min: The minimum value of all arguments to the expression.
max: The maximum value of all arguments to the expression.
sum: The sum of all arguments to the expression.
X_actions: The number of times action X is performed. For example, read_actions is the number of times the read action is performed.
X_latency: The total latency of all actions of type X. For example, read_latency is the total latency of all read actions. It is equal to the per-read latency multiplied by the number of read actions.
action2latency: A dictionary of action names to their latency.
Additionally, all component attributes are availble as variables, and all other functions generally available in parsing. Note this expression is evaluated after other component attributes are evaluated.
For example, the following expression calculates latency assuming that each read or write action takes 1ns:
1e-9 * (read_actions + write_actions).
- class accelforge.frontend.arch.Compute[source]#
-
- area: EvalsTo[int | float | None] = None#
The area of a single instance of this component in m^2. If set, area calculations will use this value.
- area_scale: EvalsTo[int | float] = 1#
The scale factor for the area of this comxponent. This is used to scale the area of this component. For example, if the area is 1 m^2 and the scale factor is 2, then the area is 2 m^2.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- component_class: str | None = None#
The class of this Component. Used if an energy or area model needs to be called for this Component.
- component_model: ComponentModel | None = None#
The model to use for this Component. If not set, the model will be found with hwcomponents.get_models(). If set, the component_class will be ignored.
- component_modeling_log: list[str] = []#
A log of the energy and area calculations for this Component.
- enabled: TryEvalTo[bool] = True#
Whether this component is enabled. If the expression resolves to False, then the component is disabled. This is evaluated per-pmapping-template, so it is a function of the tensors in the current Einsum. For example, you may say len(All) >= 3 and the component will only be enabled with Einsums with three or more tensors.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this component. For each action, multiplies this action’s energy. Multiplies the calculated energy of each action.
- extra_attributes_for_component_model: _ExtraAttrs = _ExtraAttrs()#
Extra attributes to pass to the component model. In addition to all attributes of this component, any extra attributes will be passed to the component model. This can be used to define attributes that are known to the component model, but not accelforge, such as the technology node.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- latency_scale: EvalsTo[int | float] = 1#
The scale factor for the latency of this component. This is used to scale the latency of this component. For example, if the latency is 1 ns and the scale factor is 2, then the latency is 2 ns. Multiplies the calculated latency of each action.
- leak_power: EvalsTo[int | float | None] = None#
The leak power of a single instance of this component in W. If set, leak power calculations will use this value.
- leak_power_scale: EvalsTo[int | float] = 1#
The scale factor for the leak power of this component. This is used to scale the leak power of this component. For example, if the leak power is 1 W and the scale factor is 2, then the leak power is 2 W.
- n_parallel_instances: EvalsTo[int | float] = 1#
The number of parallel instances of this component. Increasing parallel instances will proportionally increase area and leakage, while reducing latency (unless latency calculation is overridden).
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- skip_initial_output_write: bool = True#
If False, the initial value of output tensors will be fetched from above and used to initalize outputs. If True, this initial fetch and fill is skipped.
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
- to_yaml(f=None)#
Dump the model to a YAML string.
- total_area: EvalsTo[int | float | None] = None#
The total area of all instances of this component in m^2. Do not set this value. It is calculated when the architecture’s area is calculated.
- total_latency: str | int | float = 'sum(*action2latency.values())'#
An expression representing the total latency of this component in seconds. This is used to calculate the latency of a given Einsum. Special variables available are the following:
min: The minimum value of all arguments to the expression.
max: The maximum value of all arguments to the expression.
sum: The sum of all arguments to the expression.
X_actions: The number of times action X is performed. For example, read_actions is the number of times the read action is performed.
X_latency: The total latency of all actions of type X. For example, read_latency is the total latency of all read actions. It is equal to the per-read latency multiplied by the number of read actions.
action2latency: A dictionary of action names to their latency.
Additionally, all component attributes are availble as variables, and all other functions generally available in parsing. Note this expression is evaluated after other component attributes are evaluated.
For example, the following expression calculates latency assuming that each read or write action takes 1ns:
1e-9 * (read_actions + write_actions).
- class accelforge.frontend.arch.Container[source]#
Bases:
Leaf,SpatialableCreates a container, used to conveniently define spatial arrays, and doesn’t do anything else.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.Fork[source]#
Bases:
HierarchicalA Fork is a Hierarchical that branches off from the main path. The nodes inside the Fork are a separate branch, while the main path continues to the next sibling after the Fork.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- forked_power_gateable: bool = False#
Whether the child branch (the nodes inside this Fork) can be power gated when the main branch is active. If True, these nodes will not leak when the main branch is being used.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- nodes: ArchNodes[Annotated[Annotated['Compute', Tag('Compute')] | Annotated['Memory', Tag('Memory')] | Annotated['Toll', Tag('Toll')] | Annotated['Container', Tag('Container')] | Annotated['Network', Tag('Network')] | Annotated['Hierarchical', Tag('Hierarchical')] | Annotated['Array', Tag('Array')] | Annotated['Fork', Tag('Fork')], Discriminator(_get_tag)]] = ArchNodes([])#
- class accelforge.frontend.arch.Hierarchical[source]#
Bases:
Branch- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.Leaf[source]#
Bases:
ArchNodeA leaf node in the architecture. This is an abstract class that represents any node that is not a Branch.
- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- class accelforge.frontend.arch.Memory[source]#
Bases:
TensorHolderA Memory is a TensorHolder that stores data over time, allowing for temporal reuse.
- actions: EvalableList[TensorHolderAction]#
The actions that this Memory can perform.
- area: EvalsTo[int | float | None] = None#
The area of a single instance of this component in m^2. If set, area calculations will use this value.
- area_scale: EvalsTo[int | float] = 1#
The scale factor for the area of this comxponent. This is used to scale the area of this component. For example, if the area is 1 m^2 and the scale factor is 2, then the area is 2 m^2.
- bits_per_action: EvalsTo[int | float | None] = None#
The number of bits accessed in each of this component’s actions. Overridden by bits_per_action in any action of this component. If set here, acts as a default value for the bits_per_action of all actions of this component.
- bits_per_value: EvalsTo[dict] = {}#
Sets the bits per value for tensors in this TensorHolder. Keys are evaluated as expressions and may reference one or more tensors. Tensors not listed use the workload’s bits_per_value.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- component_class: str | None = None#
The class of this Component. Used if an energy or area model needs to be called for this Component.
- component_model: ComponentModel | None = None#
The model to use for this Component. If not set, the model will be found with hwcomponents.get_models(). If set, the component_class will be ignored.
- component_modeling_log: list[str] = []#
A log of the energy and area calculations for this Component.
- enabled: TryEvalTo[bool] = True#
Whether this component is enabled. If the expression resolves to False, then the component is disabled. This is evaluated per-pmapping-template, so it is a function of the tensors in the current Einsum. For example, you may say len(All) >= 3 and the component will only be enabled with Einsums with three or more tensors.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this component. For each action, multiplies this action’s energy. Multiplies the calculated energy of each action.
- extra_attributes_for_component_model: _ExtraAttrs = _ExtraAttrs()#
Extra attributes to pass to the component model. In addition to all attributes of this component, any extra attributes will be passed to the component model. This can be used to define attributes that are known to the component model, but not accelforge, such as the technology node.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- latency_scale: EvalsTo[int | float] = 1#
The scale factor for the latency of this component. This is used to scale the latency of this component. For example, if the latency is 1 ns and the scale factor is 2, then the latency is 2 ns. Multiplies the calculated latency of each action.
- leak_power: EvalsTo[int | float | None] = None#
The leak power of a single instance of this component in W. If set, leak power calculations will use this value.
- leak_power_scale: EvalsTo[int | float] = 1#
The scale factor for the leak power of this component. This is used to scale the leak power of this component. For example, if the leak power is 1 W and the scale factor is 2, then the leak power is 2 W.
- n_parallel_instances: EvalsTo[int | float] = 1#
The number of parallel instances of this component. Increasing parallel instances will proportionally increase area and leakage, while reducing latency (unless latency calculation is overridden).
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- skip_initial_output_write: bool = True#
If False, the initial value of output tensors will be fetched from above and used to initalize outputs. If True, this initial fetch and fill is skipped.
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
- tensors: Tensors#
Fields that control which tensor(s) are kept in this TensorHolder and in what order their nodes may appear in the mapping.
- to_yaml(f=None)#
Dump the model to a YAML string.
- total_area: EvalsTo[int | float | None] = None#
The total area of all instances of this component in m^2. Do not set this value. It is calculated when the architecture’s area is calculated.
- total_latency: str | int | float = 'sum(*action2latency.values())'#
An expression representing the total latency of this component in seconds. This is used to calculate the latency of a given Einsum. Special variables available are the following:
min: The minimum value of all arguments to the expression.
max: The maximum value of all arguments to the expression.
sum: The sum of all arguments to the expression.
X_actions: The number of times action X is performed. For example, read_actions is the number of times the read action is performed.
X_latency: The total latency of all actions of type X. For example, read_latency is the total latency of all read actions. It is equal to the per-read latency multiplied by the number of read actions.
action2latency: A dictionary of action names to their latency.
Additionally, all component attributes are availble as variables, and all other functions generally available in parsing. Note this expression is evaluated after other component attributes are evaluated.
For example, the following expression calculates latency assuming that each read or write action takes 1ns:
1e-9 * (read_actions + write_actions).
- class accelforge.frontend.arch.Spatial[source]#
Bases:
EvalableModelA one-dimensional spatial fanout in the architecture.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- loop_bounds: EvalableList[Comparison] = []#
Bounds for loops over this dimension. This is a list of
Comparisonobjects, all of which must be satisfied by the loops to which this constraint applies.Note: Loops may be removed if they are constrained to only one iteration.
- may_reuse: TryEvalTo[InvertibleSet[str]] = 'All'#
The tensors that can be reused spatially across instances of this fanout. This expression will be evaluated for each mapping template.
- min_usage: EvalsTo[int | float] = 0.0#
The minimum usage of spatial instances, as a value from 0 to 1. A mapping is invalid if less than this porportion of this dimension’s fanout is utilized. Mappers that support it (e.g., FFM) may, if no mappings satisfy this constraint, return the highest-usage mappings. These constraints are disabled for copy Einsums.
- power_gateable: EvalsTo[bool] = False#
Whether this spatial fanout has power gating. If True, then unused spatial instances will be power gated if not used by a particular Einsum.
- reuse: TryEvalTo[InvertibleSet[str]] = 'Nothing'#
A set of tensors or a set expression representing tensors that must be reused across spatial iterations. Spatial loops may only be placed that reuse ALL tensors given here.
Note: Loops may be removed if they do not reuse a tensor given here and they do not appear in another loop bound constraint.
- to_yaml(f=None)#
Dump the model to a YAML string.
- class accelforge.frontend.arch.TensorHolder[source]#
-
A TensorHolder is a component that holds tensors. These are usually Memories, but can also be Tolls.
- __init__(*args, **kwargs)#
Create a new model by parsing and validating input data from keyword arguments.
Raises [ValidationError][pydantic_core.ValidationError] if the input data cannot be validated to form a valid model.
self is explicitly positional-only to allow self as a field name.
- actions: EvalableList[TensorHolderAction]#
The actions that this TensorHolder can perform.
- area: EvalsTo[int | float | None] = None#
The area of a single instance of this component in m^2. If set, area calculations will use this value.
- area_scale: EvalsTo[int | float] = 1#
The scale factor for the area of this comxponent. This is used to scale the area of this component. For example, if the area is 1 m^2 and the scale factor is 2, then the area is 2 m^2.
- bits_per_action: EvalsTo[int | float | None] = None#
The number of bits accessed in each of this component’s actions. Overridden by bits_per_action in any action of this component. If set here, acts as a default value for the bits_per_action of all actions of this component.
- bits_per_value: EvalsTo[dict] = {}#
Sets the bits per value for tensors in this TensorHolder. Keys are evaluated as expressions and may reference one or more tensors. Tensors not listed use the workload’s bits_per_value.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- component_class: str | None = None#
The class of this Component. Used if an energy or area model needs to be called for this Component.
- component_model: ComponentModel | None = None#
The model to use for this Component. If not set, the model will be found with hwcomponents.get_models(). If set, the component_class will be ignored.
- component_modeling_log: list[str] = []#
A log of the energy and area calculations for this Component.
- enabled: TryEvalTo[bool] = True#
Whether this component is enabled. If the expression resolves to False, then the component is disabled. This is evaluated per-pmapping-template, so it is a function of the tensors in the current Einsum. For example, you may say len(All) >= 3 and the component will only be enabled with Einsums with three or more tensors.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this component. For each action, multiplies this action’s energy. Multiplies the calculated energy of each action.
- extra_attributes_for_component_model: _ExtraAttrs = _ExtraAttrs()#
Extra attributes to pass to the component model. In addition to all attributes of this component, any extra attributes will be passed to the component model. This can be used to define attributes that are known to the component model, but not accelforge, such as the technology node.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- latency_scale: EvalsTo[int | float] = 1#
The scale factor for the latency of this component. This is used to scale the latency of this component. For example, if the latency is 1 ns and the scale factor is 2, then the latency is 2 ns. Multiplies the calculated latency of each action.
- leak_power: EvalsTo[int | float | None] = None#
The leak power of a single instance of this component in W. If set, leak power calculations will use this value.
- leak_power_scale: EvalsTo[int | float] = 1#
The scale factor for the leak power of this component. This is used to scale the leak power of this component. For example, if the leak power is 1 W and the scale factor is 2, then the leak power is 2 W.
- n_parallel_instances: EvalsTo[int | float] = 1#
The number of parallel instances of this component. Increasing parallel instances will proportionally increase area and leakage, while reducing latency (unless latency calculation is overridden).
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
- tensors: Tensors#
Fields that control which tensor(s) are kept in this TensorHolder and in what order their nodes may appear in the mapping.
- to_yaml(f=None)#
Dump the model to a YAML string.
- total_area: EvalsTo[int | float | None] = None#
The total area of all instances of this component in m^2. Do not set this value. It is calculated when the architecture’s area is calculated.
- total_latency: str | int | float = 'sum(*action2latency.values())'#
An expression representing the total latency of this component in seconds. This is used to calculate the latency of a given Einsum. Special variables available are the following:
min: The minimum value of all arguments to the expression.
max: The maximum value of all arguments to the expression.
sum: The sum of all arguments to the expression.
X_actions: The number of times action X is performed. For example, read_actions is the number of times the read action is performed.
X_latency: The total latency of all actions of type X. For example, read_latency is the total latency of all read actions. It is equal to the per-read latency multiplied by the number of read actions.
action2latency: A dictionary of action names to their latency.
Additionally, all component attributes are availble as variables, and all other functions generally available in parsing. Note this expression is evaluated after other component attributes are evaluated.
For example, the following expression calculates latency assuming that each read or write action takes 1ns:
1e-9 * (read_actions + write_actions).
- class accelforge.frontend.arch.TensorHolderAction[source]#
Bases:
Action- bits_per_action: EvalsTo[int | float] = '1 if bits_per_action is None else bits_per_action'#
The number of bits accessed in this action. For example, setting bits_per_action to 16 means that each call to this action yields 16 bits.
- energy: EvalsTo[int | float | None] = None#
Dynamic energy of this action. Per-action energy is multiplied by the component’s energy_scale and the action’s energy_scale.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this action. Multiplies this action’s energy by this value.
- extra_attributes_for_component_model: EvalExtras = EvalExtras()#
Extra attributes to pass to the component model. In addition to all attributes of this action, any extra attributes will be passed to the component model as arguments to the component model’s action. This can be used to define attributes that are known to the component model, but not accelforge, such as clock frequency.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- latency: EvalsTo[int | float | None] = None#
Latency of this action. Per-action latency is multiplied by the component’s latency_scale and the action’s latency_scale.
- class accelforge.frontend.arch.Tensors[source]#
Bases:
EvalableModelFields that control which tensor(s) are kept in a
TensorHolderand in what order their nodes may appear in the mapping.- back: TryEvalTo[InvertibleSet[str]] = 'Nothing'#
A set expression describing which tensors must be backed by this
accelforge.frontend.arch.TensorHolder. If this is not defined, then no tensors must be backed.
- force_memory_hierarchy_order: bool = True#
If set to true, storage nodes for lower-level memories must be placed below storage nodes for higher-level memories. For example, all MainMemory storage nodes must go above all LocalBuffer storage nodes.
This constraint always applies to same-tensor storage nodes (e.g., MainMemory reusing Output must go above LocalBuffer reusing Output); turning it off will permit things like MainMemory reusing Output going above LocalBuffer reusing Input.
This is identical to the force_memory_hierarchy_order field in the FFM class, but only applies to this tensor holder.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- keep: TryEvalTo[InvertibleSet[str]] = '<Defaults to Nothing>'#
A set expression describing which tensors must be kept in this
accelforge.frontend.arch.TensorHolder. If this is not defined, then all tensors must be kept. Any tensors that are inbackwill also be added tokeep.
- may_keep: TryEvalTo[InvertibleSet[str]] = '<Nothing if keep is defined, else All>'#
A set expression describing which tensors may optionally be kept in this
accelforge.frontend.arch.TensorHolder. The mapper will explore both keeping and not keeping each of these tensors. If this is not defined, then all tensors may be kept.
- no_refetch_from_above: TryEvalTo[InvertibleSet[str]] = '~All'#
The tensors that are not allowed to be refetched from above. This is given as a set of
TensorNameobjects or a set expression that resolves to them. These tensors must be fetched at most one time from above memories, and may not be refetched across any temporal or spatial loop iterations. Tensors may be fetched in pieces (if they do not cause re-fetches of any piece).
- no_resend_to_below: TryEvalTo[InvertibleSet[str]] = '~All'#
The tensors that are not allowed to be refetched to below. This is given as a set of
TensorNameobjects or a set expression that resolves to them. These tensors must be fetched at most one time from this memory to below memories, and may not be refetched across any temporal or spatial loop iterations. Tensors may be fetched in pieces (if they do not cause re-fetches of any piece).
- tensor_order_options: EvalableList[EvalableList[TryEvalTo[InvertibleSet[str]]]] = []#
Options for the order of tensor storage nodes in the mapping. This is given as a list-of-lists-of-sets. Each list-of-sets is a valid order of tensor storage nodes. Order is given from highest in the mapping to lowest.
For example, an option could be [input | output, weight], which means that there is no relative ordering required between input and output, but weight must be below both.
- tile_shape: EvalableList[Comparison] = []#
The tile shape for each rank variable. This is given as a list of
Comparisonobjects, where each comparison must evaluate to True for a valid mapping.
- class accelforge.frontend.arch.Toll[source]#
Bases:
TensorHolderA Toll is a TensorHolder that does not store data over time, and therefore does not allow for temporal reuse. Use this as a toll that charges reads and writes every time a piece of data moves through it.
Every write to a Toll is immediately written to the next Memory (which may be above or below depending on where the write came from), and same for reads.
The access counts of a Toll are only included in the “read” action. Each traversal through the Toll is counted as a read. Writes are always zero.
- actions: EvalableList[TensorHolderAction]#
The actions that this Toll can perform.
- area: EvalsTo[int | float | None] = None#
The area of a single instance of this component in m^2. If set, area calculations will use this value.
- area_scale: EvalsTo[int | float] = 1#
The scale factor for the area of this comxponent. This is used to scale the area of this component. For example, if the area is 1 m^2 and the scale factor is 2, then the area is 2 m^2.
- bits_per_action: EvalsTo[int | float | None] = None#
The number of bits accessed in each of this component’s actions. Overridden by bits_per_action in any action of this component. If set here, acts as a default value for the bits_per_action of all actions of this component.
- bits_per_value: EvalsTo[dict] = {}#
Sets the bits per value for tensors in this TensorHolder. Keys are evaluated as expressions and may reference one or more tensors. Tensors not listed use the workload’s bits_per_value.
- calculate_action_energy(component_models=None, in_place=False)#
Calculates energy for each action of this component. If energy is set in the action or component (with action taking precedence), that value will be used. Otherwise, the energy will be calculated using hwcomponents. Populates, for each action, the
<action>.energyand field. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- calculate_action_latency(component_models=None, in_place=False)#
Calculates the latency for each action by this component. Populates the
<action>.latencyfield. Extends thecomponent_modeling_logfield with log messages.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for latency calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated latency for each action.
- Return type:
Self
- calculate_area(component_models=None, in_place=False)#
Calculates the area for this component. If area is set in the component, that value will be used. Otherwise, the area will be calculated using the hwcomponents library. Populates
areafield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for area calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated area.
- Return type:
Self
- calculate_area_energy_latency_leak(component_models=None, in_place=False, _use_cache=False)#
Calculates the area, energy, latency, and leak power for this component. Populates the
area,total_area,leak_power,total_leak_power,total_latency, andcomponent_modeling_logfields of this component. Additionally, for each action, populates the<action>.area,<action>.energy,<action>.latency, and<action>.leak_powerfields. Extends thecomponent_modeling_logfield with log messages.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned._use_cache (
bool) – If True, the component model will be cached and reused if the same component class, attributes, and actions are provided. Note that this may return copies of the same object across multiple calls.
- Returns:
The component with the calculated energy, area, and leak power.
- Return type:
Self
- calculate_leak_power(component_models=None, in_place=False)#
Calculates the leak power for this component. If leak power is set in the component, that value will be used. Otherwise, the leak power will be calculated using hwcomponents. Populates
leak_powerfield. Extends thecomponent_modeling_logfield with log messages.Uses the
component_modelattribute, or, if not set, thecomponent_classattribute to find the model and populate thecomponent_modelattribute.Note that these methods will be called by the Spec when calculating energy and area. If you call them yourself, note that string expressions may not be evaluated because they need the Spec’s global scope. If you are sure that all necessary values are present and not a result of an expression, you can call these directly. Otherwise, you can call the
Spec.calculate_component_area_energy_latency_leakand then grab components from the returnedSpec.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.
- Returns:
A copy of the component with the calculated energy.
- Return type:
Self
- component_class: str | None = None#
The class of this Component. Used if an energy or area model needs to be called for this Component.
- component_model: ComponentModel | None = None#
The model to use for this Component. If not set, the model will be found with hwcomponents.get_models(). If set, the component_class will be ignored.
- component_modeling_log: list[str] = []#
A log of the energy and area calculations for this Component.
- direction: TryEvalTo[dict]#
The direction in which data flows through this Toll. Can be:
A string:
"up","down", or"up_and_down"— applies to all tensors.A dict mapping tensor expressions to direction strings, e.g.
{input: "down", output: "up"}— sets direction per tensor.
If “up”, then data flows from below TensorHolder, through this Toll (plus paying associated costs), and then to the next TensorHolder above it. Other data movements are assumed to avoid this Toll.
- enabled: TryEvalTo[bool] = True#
Whether this component is enabled. If the expression resolves to False, then the component is disabled. This is evaluated per-pmapping-template, so it is a function of the tensors in the current Einsum. For example, you may say len(All) >= 3 and the component will only be enabled with Einsums with three or more tensors.
- energy_scale: EvalsTo[int | float] = 1#
The scale factor for dynamic energy of this component. For each action, multiplies this action’s energy. Multiplies the calculated energy of each action.
- extra_attributes_for_component_model: _ExtraAttrs = _ExtraAttrs()#
Extra attributes to pass to the component model. In addition to all attributes of this component, any extra attributes will be passed to the component model. This can be used to define attributes that are known to the component model, but not accelforge, such as the technology node.
- find(name, default=_FIND_SENTINEL)#
Finds a node with the given name.
- Parameters:
- Raises:
ValueError – If a node with the given name is not found.
- Return type:
- Returns:
ArchNode – The node with the given name.
default – The value to return if the Leaf node with the given name is not found.
- find_first_of_type_above(node_type, name, default=_FIND_SENTINEL)#
Returns the first node with type node_type above name.
If name does not exist, raises an error.
If no node of node_type is found, either default is returned (if provided) or raises an error.
- classmethod from_yaml(*files, jinja_parse_data=None, top_key=None, **kwargs)#
Loads a dictionary from one more more yaml files.
Each yaml file should contain a dictionary. Dictionaries are combined in the order they are given.
Keyword arguments are also added to the dictionary.
- Parameters:
files (
str|list[str] |Path|list[Path]) – A list of yaml files to load.jinja_parse_data (
dict[str,Any] |None) – Optional[Dict[str, Any]] A dictionary of Jinja2 data to use when parsing the yaml files.top_key (
str|None) – Optional[str] The top key to use when parsing the yaml files.kwargs – Extra keyword arguments to be passed to the Jinja2 parser.
- Return type:
TypeVar(T)- Returns:
A dict containing the combined dictionaries.
- get_component_class(trying_to_calculate=None)#
Returns the class of this Component.
- Parameters:
trying_toeval (str, optional) – What was trying to be calculated using this component. If provided, the error message will be more specific.
- Raises:
EvaluationError – If the component_class is not set.
- Return type:
- iterate_hierarchically(_parents=None)#
Iterates over all nodes with names while also yielding the list of all nodes that are hierarchical parents over the current node.
- latency_scale: EvalsTo[int | float] = 1#
The scale factor for the latency of this component. This is used to scale the latency of this component. For example, if the latency is 1 ns and the scale factor is 2, then the latency is 2 ns. Multiplies the calculated latency of each action.
- leak_power: EvalsTo[int | float | None] = None#
The leak power of a single instance of this component in W. If set, leak power calculations will use this value.
- leak_power_scale: EvalsTo[int | float] = 1#
The scale factor for the leak power of this component. This is used to scale the leak power of this component. For example, if the leak power is 1 W and the scale factor is 2, then the leak power is 2 W.
- n_parallel_instances: EvalsTo[int | float] = 1#
The number of parallel instances of this component. Increasing parallel instances will proportionally increase area and leakage, while reducing latency (unless latency calculation is overridden).
- populate_component_model(component_models=None, in_place=False, trying_to_calculate=None)#
Populates the
component_modelattribute with the model for this component. Extends thecomponent_modeling_logfield with log messages. Uses thecomponent_classattribute to find the model and populate thecomponent_modelattribute. Uses thehwcomponents.get_model()function to find the model.- Parameters:
component_models (
list[ComponentModel] |None) – The models to use for energy calculation. If not provided, the models will be found with hwcomponents.get_models().in_place (
bool) – If True, the component will be modified in place. Otherwise, a copy will be returned.trying_to_calculate (
str) – What was trying to be calculated using this component. If provided, the error messages for missing component_class will be more specific.
- Returns:
A copy of the component with the populated
component_modelattribute.- Return type:
TypeVar(T, bound= ArchNode)
- spatial: EvalableList[Spatial] = []#
The spatial fanouts of this Leaf.
Spatial fanouts describe the spatial organization of components in the architecture. A spatial fanout of size N for this node means that there are N instances of this node. Multiple spatial fanouts lead to a multi-dimensional fanout. Spatial constraints apply to the data exchange across these instances. Spatial fanouts specified at this level also apply to lower-level Leaf nodes in the architecture.
- tensors: Tensors#
Fields that control which tensor(s) are kept in this TensorHolder and in what order their nodes may appear in the mapping.
- to_yaml(f=None)#
Dump the model to a YAML string.
- total_area: EvalsTo[int | float | None] = None#
The total area of all instances of this component in m^2. Do not set this value. It is calculated when the architecture’s area is calculated.
- total_latency: str | int | float = 'sum(*action2latency.values())'#
An expression representing the total latency of this component in seconds. This is used to calculate the latency of a given Einsum. Special variables available are the following:
min: The minimum value of all arguments to the expression.
max: The maximum value of all arguments to the expression.
sum: The sum of all arguments to the expression.
X_actions: The number of times action X is performed. For example, read_actions is the number of times the read action is performed.
X_latency: The total latency of all actions of type X. For example, read_latency is the total latency of all read actions. It is equal to the per-read latency multiplied by the number of read actions.
action2latency: A dictionary of action names to their latency.
Additionally, all component attributes are availble as variables, and all other functions generally available in parsing. Note this expression is evaluated after other component attributes are evaluated.
For example, the following expression calculates latency assuming that each read or write action takes 1ns:
1e-9 * (read_actions + write_actions).