loki.transformations.single_column.annotate
Classes
|
A set of utilities to insert generic Loki directives. |
- class SCCAnnotateTransformation(block_dim)
Bases:
Transformation
A set of utilities to insert generic Loki directives. This includes both
Loop
andSubroutine
level annotations.- Parameters:
block_dim (
Dimension
) – OptionalDimension
object to define the blocking dimension to use for hoisted column arrays if hoisting is enabled.
- annotate_vector_loops(routine)
Insert
!$loki loop vector
for previously marked loops, including addition of the necessary private variable declarations.- Parameters:
routine (
Subroutine
) – The subroutine in the vector loops should be removed.
- warn_vec_within_seq_loops(routine)
Check for vector inside sequential loops and print warning.
- Parameters:
routine (
Subroutine
) – The subroutine in which to check for vector inside sequential loops
- annotate_kernel_routine(routine)
Insert
!$loki routine seq/vector
directives and wrap subroutine body in!$loki device-present
directives.- Parameters:
routine (
Subroutine
) – The subroutine to which annotations will be added
- transform_subroutine(routine, **kwargs)
Apply pragma annotations according to
!$loki
placeholder directives.This routine effectively adds
!$loki device-present
clauses around kernel routine bodies and addsprivate
clauses to loop annotations.- Parameters:
routine (
Subroutine
) – Subroutine to apply this transformation to.role (string) – Role of the subroutine in the call tree; should be
"kernel"
- find_acc_vars(routine, targets)
Find variables already specified in loki/acc data clauses.
- Parameters:
routine (
Subroutine
) – Subroutine to apply this transformation to.targets (list or string) – List of subroutines that are to be considered as part of the transformation call tree.
- classmethod device_alloc_column_locals(routine, column_locals)
Add explicit OpenACC statements for creating device variables for hoisted column locals.
- Parameters:
routine (
Subroutine
) – Subroutine to apply this transformation to.column_locals (list) – List of column locals to be hoisted to driver layer