Skip to content

Commit

Permalink
Reenable sdfg.simplify for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
mcopik committed Oct 19, 2023
1 parent 24fde26 commit f74f061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/fortran/intrinsic_minmaxval.py
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ def test_fortran_frontend_minval_double():

# Now test to verify it executes correctly with no offset normalization
sdfg = fortran_parser.create_sdfg_from_string(test_string, "minval_test", True)
#sdfg.simplify(verbose=True)
sdfg.simplify(verbose=True)
sdfg.compile()
size = 7

Expand Down Expand Up @@ -151,7 +151,7 @@ def test_fortran_frontend_maxval_double():

# Now test to verify it executes correctly with no offset normalization
sdfg = fortran_parser.create_sdfg_from_string(test_string, "minval_test", True)
#sdfg.simplify(verbose=True)
sdfg.simplify(verbose=True)
sdfg.compile()
size = 7

Expand Down

0 comments on commit f74f061

Please sign in to comment.