Skip to content

Commit

Permalink
cache_njit might be causing problems
Browse files Browse the repository at this point in the history
  • Loading branch information
jrenaud90 committed Oct 7, 2023
1 parent a1954b8 commit a675494
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Tests/B_Other_Tests/test_helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ def test_cy2nb_cache_njit():
assert success_cy

# Perform the function conversion
diffeq_nb_converted = cy2nb(diffeq_cy, cache_njit=True)
diffeq_nb_converted = cy2nb(diffeq_cy)

# Use this function to recalculate using cyrk
time_domain_nb_conv, y_results_nb_conv, success_nb_conv, message_nb_conv = \
Expand Down Expand Up @@ -247,7 +247,7 @@ def test_nb2cy_cache_njit():
assert success_cy

# Perform the function conversion
diffeq_cy_converted = nb2cy(diffeq_scipy, cache_njit=True)
diffeq_cy_converted = nb2cy(diffeq_scipy)

# Use this function to recalculate using cyrk
time_domain_cy_conv, y_results_cy_conv, success_cy_conv, message_cy_conv = \
Expand Down

0 comments on commit a675494

Please sign in to comment.