-
Notifications
You must be signed in to change notification settings - Fork 54
Refactor inline expressions expansion into a transformer #1093
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
817dbda
refactor inline expressions expansion into a transformer
67206dc
refactor inline expressions expansion into a transformer
82db395
refactor inline expressions expansion into a transformer
5bd4ad7
refactor inline expressions expansion into a transformer
43df41f
refactor inline expressions expansion into a transformer
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
142 changes: 142 additions & 0 deletions
142
pynestml/transformers/inline_expression_expansion_transformer.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,142 @@ | ||
| # -*- coding: utf-8 -*- | ||
| # | ||
| # inline_expression_expansion_transformer.py | ||
| # | ||
| # This file is part of NEST. | ||
| # | ||
| # Copyright (C) 2004 The NEST Initiative | ||
| # | ||
| # NEST is free software: you can redistribute it and/or modify | ||
| # it under the terms of the GNU General Public License as published by | ||
| # the Free Software Foundation, either version 2 of the License, or | ||
| # (at your option) any later version. | ||
| # | ||
| # NEST is distributed in the hope that it will be useful, | ||
| # but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| # GNU General Public License for more details. | ||
| # | ||
| # You should have received a copy of the GNU General Public License | ||
| # along with NEST. If not, see <http://www.gnu.org/licenses/>. | ||
|
|
||
| from __future__ import annotations | ||
|
|
||
| from typing import List, Optional, Mapping, Any, Union, Sequence | ||
|
|
||
| import re | ||
|
|
||
| from pynestml.frontend.frontend_configuration import FrontendConfiguration | ||
| from pynestml.meta_model.ast_inline_expression import ASTInlineExpression | ||
| from pynestml.meta_model.ast_node import ASTNode | ||
| from pynestml.meta_model.ast_ode_equation import ASTOdeEquation | ||
| from pynestml.transformers.transformer import Transformer | ||
| from pynestml.utils.ast_utils import ASTUtils | ||
| from pynestml.utils.logger import Logger, LoggingLevel | ||
| from pynestml.utils.string_utils import removesuffix | ||
| from pynestml.visitors.ast_higher_order_visitor import ASTHigherOrderVisitor | ||
| from pynestml.visitors.ast_parent_visitor import ASTParentVisitor | ||
| from pynestml.visitors.ast_symbol_table_visitor import ASTSymbolTableVisitor | ||
|
|
||
|
|
||
| class InlineExpressionExpansionTransformer(Transformer): | ||
| r""" | ||
| Make inline expressions self contained, i.e. without any references to other inline expressions. | ||
|
|
||
| Additionally, replace variable symbols referencing inline expressions in defining expressions of ODEs with the corresponding defining expressions from the inline expressions. | ||
| """ | ||
|
|
||
| _variable_matching_template = r'(\b)({})(\b)' | ||
|
|
||
| def __init__(self, options: Optional[Mapping[str, Any]] = None): | ||
| super(Transformer, self).__init__(options) | ||
|
|
||
| def transform(self, models: Union[ASTNode, Sequence[ASTNode]]) -> Union[ASTNode, Sequence[ASTNode]]: | ||
| single = False | ||
| if isinstance(models, ASTNode): | ||
| single = True | ||
| models = [models] | ||
|
|
||
| for model in models: | ||
| if not model.get_equations_blocks(): | ||
| continue | ||
|
|
||
| for equations_block in model.get_equations_blocks(): | ||
| self.make_inline_expressions_self_contained(equations_block.get_inline_expressions()) | ||
|
|
||
| for equations_block in model.get_equations_blocks(): | ||
| self.replace_inline_expressions_through_defining_expressions(equations_block.get_ode_equations(), equations_block.get_inline_expressions()) | ||
|
|
||
| if single: | ||
| return models[0] | ||
|
|
||
| return models | ||
|
|
||
| def make_inline_expressions_self_contained(self, inline_expressions: List[ASTInlineExpression]) -> List[ASTInlineExpression]: | ||
| r""" | ||
| Make inline expressions self contained, i.e. without any references to other inline expressions. | ||
|
|
||
| :param inline_expressions: A sorted list with entries ASTInlineExpression. | ||
| :return: A list with ASTInlineExpressions. Defining expressions don't depend on each other. | ||
| """ | ||
| from pynestml.utils.model_parser import ModelParser | ||
| from pynestml.visitors.ast_symbol_table_visitor import ASTSymbolTableVisitor | ||
|
|
||
| for source in inline_expressions: | ||
| source_position = source.get_source_position() | ||
| for target in inline_expressions: | ||
| matcher = re.compile(self._variable_matching_template.format(source.get_variable_name())) | ||
| target_definition = str(target.get_expression()) | ||
| target_definition = re.sub(matcher, "(" + str(source.get_expression()) + ")", target_definition) | ||
| old_parent = target.expression.parent_ | ||
| target.expression = ModelParser.parse_expression(target_definition) | ||
| target.expression.update_scope(source.get_scope()) | ||
| target.expression.parent_ = old_parent | ||
| target.expression.accept(ASTParentVisitor()) | ||
| target.expression.accept(ASTSymbolTableVisitor()) | ||
|
|
||
| def log_set_source_position(node): | ||
| if node.get_source_position().is_added_source_position(): | ||
| node.set_source_position(source_position) | ||
|
|
||
| target.expression.accept(ASTHigherOrderVisitor(visit_funcs=log_set_source_position)) | ||
|
|
||
| return inline_expressions | ||
|
|
||
| @classmethod | ||
| def replace_inline_expressions_through_defining_expressions(self, definitions: Sequence[ASTOdeEquation], | ||
| inline_expressions: Sequence[ASTInlineExpression]) -> Sequence[ASTOdeEquation]: | ||
| r""" | ||
| Replace variable symbols referencing inline expressions in defining expressions of ODEs with the corresponding defining expressions from the inline expressions. | ||
|
|
||
| :param definitions: A list of ODE definitions (**updated in-place**). | ||
| :param inline_expressions: A list of inline expression definitions. | ||
| :return: A list of updated ODE definitions (same as the ``definitions`` parameter). | ||
| """ | ||
| from pynestml.utils.model_parser import ModelParser | ||
| from pynestml.visitors.ast_symbol_table_visitor import ASTSymbolTableVisitor | ||
|
|
||
| for m in inline_expressions: | ||
| if "mechanism" not in [e.namespace for e in m.get_decorators()]: | ||
| """ | ||
| exclude compartmental mechanism definitions in order to have the | ||
| inline as a barrier inbetween odes that are meant to be solved independently | ||
| """ | ||
| source_position = m.get_source_position() | ||
| for target in definitions: | ||
| matcher = re.compile(self._variable_matching_template.format(m.get_variable_name())) | ||
| target_definition = str(target.get_rhs()) | ||
| target_definition = re.sub(matcher, "(" + str(m.get_expression()) + ")", target_definition) | ||
| old_parent = target.rhs.parent_ | ||
| target.rhs = ModelParser.parse_expression(target_definition) | ||
| target.update_scope(m.get_scope()) | ||
| target.rhs.parent_ = old_parent | ||
| target.rhs.accept(ASTParentVisitor()) | ||
| target.accept(ASTSymbolTableVisitor()) | ||
|
|
||
| def log_set_source_position(node): | ||
| if node.get_source_position().is_added_source_position(): | ||
| node.set_source_position(source_position) | ||
|
|
||
| target.accept(ASTHigherOrderVisitor(visit_funcs=log_set_source_position)) | ||
|
|
||
| return definitions |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
tests/nest_tests/resources/beta_function_with_inline_expression_neuron.nestml
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,59 @@ | ||
| """ | ||
| beta_function_with_inline_expression_neuron | ||
| ########################################### | ||
|
|
||
| Description | ||
| +++++++++++ | ||
|
|
||
| Used for testing processing of inline expressions. | ||
|
|
||
|
|
||
| Copyright | ||
| +++++++++ | ||
|
|
||
| This file is part of NEST. | ||
|
|
||
| Copyright (C) 2004 The NEST Initiative | ||
|
|
||
| NEST is free software: you can redistribute it and/or modify | ||
| it under the terms of the GNU General Public License as published by | ||
| the Free Software Foundation, either version 2 of the License, or | ||
| (at your option) any later version. | ||
|
|
||
| NEST is distributed in the hope that it will be useful, | ||
| but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
| GNU General Public License for more details. | ||
| You should have received a copy of the GNU General Public License | ||
| along with NEST. If not, see <http://www.gnu.org/licenses/>. | ||
| """ | ||
| model beta_function_with_inline_expression_neuron: | ||
clinssen marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| parameters: | ||
| tau1 ms = 20 ms ## decay time | ||
| tau2 ms = 10 ms ## rise time | ||
|
|
||
| state: | ||
| x_ pA/ms = 0 pA/ms | ||
| x pA = 0 pA | ||
|
|
||
| internals: | ||
| alpha real = 42. | ||
|
|
||
| equations: | ||
| x' = x_ - x / tau2 | ||
| x_' = - x_ / tau1 | ||
|
|
||
| recordable inline z pA = x | ||
|
|
||
| input: | ||
| weighted_input_spikes <- spike | ||
|
|
||
| output: | ||
| spike | ||
|
|
||
| update: | ||
| integrate_odes() | ||
|
|
||
| onReceive(weighted_input_spikes): | ||
| x_ += alpha * (1 / tau2 - 1 / tau1) * pA * weighted_input_spikes * s | ||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.