Skip to content

Commit

Permalink
Loki-transform: Allow file configuration for SCC transformations
Browse files Browse the repository at this point in the history
We're leaving the defaults in for the moment until the full hit comes.
  • Loading branch information
mlange05 authored and reuterbal committed May 10, 2024
1 parent 609d15e commit 6fa205d
Showing 1 changed file with 31 additions and 24 deletions.
55 changes: 31 additions & 24 deletions scripts/loki_transform.py
Original file line number Diff line number Diff line change
Expand Up @@ -280,39 +280,46 @@ def transform_subroutine(self, routine, **kwargs):
scheduler.process( pipeline )

if mode == 'scc':
pipeline = SCCVectorPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
trim_vector_sections=trim_vector_sections
)
pipeline = scheduler.config.transformations.get('scc', None)
if not pipeline:
pipeline = SCCVectorPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
trim_vector_sections=trim_vector_sections
)
scheduler.process( pipeline )

if mode == 'scc-hoist':
pipeline = SCCHoistPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
dim_vars=(vertical.size,) if vertical else None,
trim_vector_sections=trim_vector_sections
)
pipeline = scheduler.config.transformations.get('scc-hoist', None)
if not pipeline:
pipeline = SCCHoistPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
dim_vars=(vertical.size,) if vertical else None,
trim_vector_sections=trim_vector_sections
)
scheduler.process( pipeline )

if mode == 'scc-stack':
pipeline = SCCStackPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
check_bounds=False,
trim_vector_sections=trim_vector_sections
)
pipeline = scheduler.config.transformations.get('scc-stack', None)
if not pipeline:
pipeline = SCCStackPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
check_bounds=False,
trim_vector_sections=trim_vector_sections
)
scheduler.process( pipeline )

if mode == 'scc-raw-stack':
pipeline = SCCStackPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
check_bounds=False,
trim_vector_sections=trim_vector_sections,
driver_horizontal='NPROMA'
)
pipeline = scheduler.config.transformations.get('scc-raw-stack', None)
if not pipeline:
pipeline = SCCStackPipeline(
horizontal=horizontal,
block_dim=block_dim, directive=directive,
check_bounds=False,
trim_vector_sections=trim_vector_sections,
)
scheduler.process( pipeline )

if mode in ['cuf-parametrise', 'cuf-hoist', 'cuf-dynamic']:
Expand Down

0 comments on commit 6fa205d

Please sign in to comment.