Source code for psyclone.domain.common.transformations.raise_psyir_2_alg_trans

# -----------------------------------------------------------------------------
# BSD 3-Clause License
#
# Copyright (c) 2021-2025, Science and Technology Facilities Council.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# * Redistributions of source code must retain the above copyright notice, this
#   list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright notice,
#   this list of conditions and the following disclaimer in the documentation
#   and/or other materials provided with the distribution.
#
# * Neither the name of the copyright holder nor the names of its
#   contributors may be used to endorse or promote products derived from
#   this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
# -----------------------------------------------------------------------------
# Authors: R. W. Ford, A. R. Porter, N. Nobre and S. Siso STFC Daresbury Lab

'''Specialise generic PSyIR representing an invoke call within the
algorithm layer to a PSyclone algorithm-layer-specific invoke call
which uses specialised classes.

'''
# pylint: disable=protected-access

from fparser.two.Fortran2003 import Structure_Constructor

from psyclone.psyir.frontend.fortran import FortranReader
from psyclone.psyir.nodes import (
    Call, ArrayReference, CodeBlock, Literal, Reference)
from psyclone.psyir.symbols import (
    Symbol, DataTypeSymbol, StructureType, RoutineSymbol, ScalarType)
from psyclone.domain.common.algorithm import (
    AlgorithmInvokeCall, KernelFunctor)
from psyclone.psyGen import Transformation
from psyclone.psyir.transformations import TransformationError
from psyclone.psyir.frontend.fparser2 import Fparser2Reader
from psyclone.utils import transformation_documentation_wrapper


[docs] @transformation_documentation_wrapper class RaisePSyIR2AlgTrans(Transformation): '''Transform a generic PSyIR representation of an Algorithm-layer invoke call to a PSyclone version with specialised domain-specific nodes. ''' def __init__(self): super().__init__() self._call_name = None @staticmethod def _parse_args(code_block, fp2_node): '''Return the arguments from a Structure Constructor stored as a CodeBlock containing an fparser2 ast. :param code_block: the CodeBlock containing a StructureConstructor. :type code_block: :py:class:`psyclone.psyir.nodes.CodeBlock` :param fp2_node: the fparser2 Structure Constructor node. :type fp2_node: \ :py:class:`fparser.two.Fortran2003.Structure_Constructor` :returns: a list of PSyIR nodes containing the \ StructureConstructor arguments. :rtype: list of :py:class:`psyclone.psyir.nodes.Node` ''' dummy_call = Call(parent=code_block.parent) dummy_call.addchild(Reference(RoutineSymbol("dummy"))) fparser2 = Fparser2Reader() for arg in fp2_node.children[1].children: fparser2.process_nodes(dummy_call, [arg]) # Return the list of detached arguments return dummy_call.pop_all_children()[1:] @staticmethod def _get_symbol(call, fp2_node): '''Return the name of a Structure Constructor stored as a CodeBlock containing an fparser2 ast. :param code_block: the CodeBlock containing a StructureConstructor. :type code_block: :py:class:`psyclone.psyir.nodes.CodeBlock` :param fp2_node: the fparser2 Structure Constructor node. :type fp2_node: \ :py:class:`fparser.two.Fortran2003.Structure_Constructor` :returns: the symbol capturing the name and type of the \ StructureConstructor. :rtype: :py:class:`psyclone.psyir.symbols.Symbol` ''' name = fp2_node.children[0].string symbol_table = call.scope.symbol_table try: type_symbol = symbol_table.lookup(name) except KeyError: type_symbol = DataTypeSymbol(name, StructureType()) symbol_table.add(type_symbol) return type_symbol @staticmethod def _specialise_symbol(symbol): '''If the symbol argument is a Symbol then change it into a DataTypeSymbol. :param symbol: a symbol that will be modified to a DataTypeSymbol \ if it is a Symbol. :type symbol: :py:class:`psyclone.psyir.symbols.Symbol` ''' # pylint: disable=unidiomatic-typecheck if type(symbol) is Symbol: symbol.specialise(DataTypeSymbol) symbol.datatype = StructureType() def _validate_fp2_node(self, fp2_node): '''Validation routine for an fparser2 node within a code block. :param fp2_node: an fparser2 Structure Constructor. :type fp2_node: \ :py:class:`fparser.two.Fortran2003.Structure_Constructor` :raises TransformationError: if the fparser2 node is not the \ expected type. ''' if not isinstance(fp2_node, Structure_Constructor): raise TransformationError( f"Error in {self.name} transformation. Expecting an algorithm " f"invoke codeblock to contain a Structure-Constructor, but " f"found '{type(fp2_node).__name__}'.")
[docs] def validate(self, node: Call, options=None, **kwargs): '''Validate the node argument. :param node: a PSyIR call node capturing an invoke call in generic PSyIR. :type node: :py:class:`psyclone.psyir.nodes.Call` :param options: a dictionary with options for transformations. :type options: Optional[Dict[str, Any]] :raises TransformationError: if the supplied call argument is not a PSyIR Call node. :raises TransformationError: if the supplied call argument does not have the expected name which would identify it as an invoke call. :raises TransformationError: if there is more than one named argument. :raises TransformationError: if the named argument does not conform to the name=str format. :raises TransformationError: if the name of the invoke is invalid. :raises TransformationError: if the invoke arguments are not a PSyIR ArrayReference or CodeBlock. ''' if not options: self.validate_options(**kwargs) self._call_name = None if not isinstance(node, Call): raise TransformationError( f"Error in {self.name} transformation. The supplied call " f"argument should be a `Call` node but found " f"'{type(node).__name__}'.") if not node.routine.name.lower() == "invoke": raise TransformationError( f"Error in {self.name} transformation. The supplied call " f"argument should be a `Call` node with name 'invoke' but " f"found '{node.routine.name}'.") names = [name for name in node.argument_names if name] if len(names) > 1: raise TransformationError( f"Error in {self.name} transformation. There should be at " f"most one named argument in an invoke, but there are " f"{len(names)} in '{node.debug_string()}'.") for idx, arg in enumerate(node.arguments): if node.argument_names[idx]: if (not node.argument_names[idx].lower() == "name" or not (isinstance(arg, Literal) and isinstance(arg.datatype, ScalarType) and arg.datatype.intrinsic == ScalarType.Intrinsic.CHARACTER)): raise TransformationError( f"Error in {self.name} transformation. If there " f"is a named argument, it must take the form name" f"='str', but found '{node.debug_string()}'.") try: FortranReader.validate_name(arg.value) except (TypeError, ValueError) as err: raise TransformationError( f"Problem with invoke name: {err}") from err if node.argument_names[idx]: pass elif isinstance(arg, ArrayReference): pass elif isinstance(arg, CodeBlock): # pylint: disable=protected-access for fp2_node in arg._fp2_nodes: self._validate_fp2_node(fp2_node) else: if isinstance(arg, Call): info = ( f"The invoke call argument '{arg.routine.name}' has " f"been used as a routine name. This is not allowed.") else: info = ( f"The arguments to this invoke call are expected to " f"be kernel calls which are represented in generic " f"PSyIR as CodeBlocks or ArrayReferences, but " f"'{arg.debug_string()}' is of type " f"'{type(arg).__name__}'.") raise TransformationError( f"Error in {self.name} transformation. {info}")
[docs] def apply(self, node: Call, index: int = None, options=None, **kwargs): ''' Apply the transformation to the supplied node. :param node: a PSyIR call node capturing an invoke call in generic PSyIR. :param index: the position of this invoke call relative to other invokes in the algorithm layer. :param options: a dictionary with options for transformations. :type options: Optional[Dict[str, Any]] ''' self.validate(node, index=index, options=options, **kwargs) call_name = None calls = [] for idx, call_arg in enumerate(node.arguments): # pylint: disable=protected-access arg_info = [] if node.argument_names[idx]: call_name = f"{call_arg.value}" continue elif isinstance(call_arg, ArrayReference): # kernel misrepresented as ArrayReference args = call_arg.pop_all_children() type_symbol = call_arg.symbol arg_info.append((type_symbol, args)) else: # The validates check that this can only be a Codeblock with # a StructureConstructor fparser2 node inside for fp2_node in call_arg.get_ast_nodes: # This child is a kernel type_symbol = self._get_symbol(node, fp2_node) args = self._parse_args(call_arg, fp2_node) arg_info.append((type_symbol, args)) for (type_symbol, args) in arg_info: self._specialise_symbol(type_symbol) calls.append(KernelFunctor.create(type_symbol, args)) invoke_call = AlgorithmInvokeCall.create( node.routine.symbol, calls, index, name=call_name) # Keep comments invoke_call.preceding_comment = node.preceding_comment invoke_call.inline_comment = node.inline_comment node.replace_with(invoke_call)
__all__ = ['RaisePSyIR2AlgTrans']