loki.transformations.pragma_model
Classes
|
A generic pragma mapper class. |
|
Loki generic pragmas to OpenACC mapper. |
|
Loki generic pragmas to OpenMP offload/GPU mapper. |
|
Loki generic pragmas to OpenMP CPU mapper. |
|
Transformation to map Loki generic pragmas to a specific pragma model using a child class of |
- class PragmaModelTransformation(directive=None, keep_loki_pragmas=True)
Bases:
Transformation
Transformation to map Loki generic pragmas to a specific pragma model using a child class of
GenericPragmaMapper
.For the mapping between Loki directives and programming model-specific annotations, see Loki directives.
- Parameters:
- item_filter = (<class 'loki.batch.item.ProcedureItem'>, <class 'loki.batch.item.ModuleItem'>)
- transform_module(module, **kwargs)
Defines the transformation to apply to
Module
items.For transformations that modify
Module
objects, this method should be implemented. It gets called via the dispatch methodapply()
.- Parameters:
module (
Module
) – The module to be transformed.**kwargs (optional) – Keyword arguments for the transformation.
- transform_subroutine(routine, **kwargs)
Defines the transformation to apply to
Subroutine
items.For transformations that modify
Subroutine
objects, this method should be implemented. It gets called via the dispatch methodapply()
.- Parameters:
routine (
Subroutine
) – The subroutine to be transformed.**kwargs (optional) – Keyword arguments for the transformation.