Skip to content

Commit

Permalink
SCC: Rename test_single_column_coalesced.py to test_scc.py
Browse files Browse the repository at this point in the history
  • Loading branch information
mlange05 committed Jul 26, 2024
1 parent 5afe0d0 commit 1c9eb9c
Showing 1 changed file with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def test_scc_annotate_openacc(frontend, horizontal, blocking):


@pytest.mark.parametrize('frontend', available_frontends())
def test_single_column_coalesced_nested(frontend, horizontal, blocking):
def test_scc_nested(frontend, horizontal, blocking):
"""
Test the correct handling of nested vector-level routines in SCC.
"""
Expand Down Expand Up @@ -486,7 +486,7 @@ def test_single_column_coalesced_nested(frontend, horizontal, blocking):


@pytest.mark.parametrize('frontend', available_frontends())
def test_single_column_coalesced_outer_loop(frontend, horizontal, blocking):
def test_scc_outer_loop(frontend, horizontal, blocking):
"""
Test the correct handling of an outer loop that breaks scoping.
"""
Expand Down Expand Up @@ -578,7 +578,7 @@ def test_single_column_coalesced_outer_loop(frontend, horizontal, blocking):


@pytest.mark.parametrize('frontend', available_frontends())
def test_single_column_coalesced_variable_demotion(frontend, horizontal):
def test_scc_variable_demotion(frontend, horizontal):
"""
Test the correct demotion of an outer loop that breaks scoping.
"""
Expand Down Expand Up @@ -628,7 +628,7 @@ def test_single_column_coalesced_variable_demotion(frontend, horizontal):

@pytest.mark.parametrize('frontend', available_frontends(xfail=[(OFP,
'OFP fails to parse multiconditional with embedded call.')]))
def test_single_column_coalesced_multicond(frontend, horizontal, blocking):
def test_scc_multicond(frontend, horizontal, blocking):
"""
Test if horizontal loops in multiconditionals with CallStatements are
correctly transformed.
Expand Down Expand Up @@ -690,7 +690,7 @@ def test_single_column_coalesced_multicond(frontend, horizontal, blocking):


@pytest.mark.parametrize('frontend', available_frontends())
def test_single_column_coalesced_multiple_acc_pragmas(frontend, horizontal, blocking):
def test_scc_multiple_acc_pragmas(frontend, horizontal, blocking):
"""
Test that both '!$acc data' and '!$acc parallel loop gang' pragmas are created at the
driver layer.
Expand Down Expand Up @@ -796,7 +796,7 @@ def test_scc_base_routine_seq_pragma(frontend, horizontal):


@pytest.mark.parametrize('frontend', available_frontends())
def test_single_column_coalesced_vector_reduction(frontend, horizontal, blocking):
def test_scc_vector_reduction(frontend, horizontal, blocking):
"""
Test for the insertion of OpenACC vector reduction directives.
"""
Expand Down Expand Up @@ -844,7 +844,7 @@ def test_single_column_coalesced_vector_reduction(frontend, horizontal, blocking


@pytest.mark.parametrize('frontend', available_frontends())
def test_single_column_coalesced_demotion_parameter(frontend, horizontal, tmp_path):
def test_scc_demotion_parameter(frontend, horizontal, tmp_path):
"""
Test that temporary arrays with compile-time constants are marked for demotion.
"""
Expand Down Expand Up @@ -965,7 +965,7 @@ def test_scc_base_horizontal_bounds_checks(frontend, horizontal, horizontal_boun
@pytest.mark.parametrize('frontend', available_frontends())
@pytest.mark.parametrize('inline_internals', [False, True])
@pytest.mark.parametrize('resolve_sequence_association', [False, True])
def test_single_column_coalesced_inline_and_sequence_association(
def test_scc_inline_and_sequence_association(
frontend, horizontal, inline_internals, resolve_sequence_association
):
"""
Expand Down

0 comments on commit 1c9eb9c

Please sign in to comment.