Skip to content
Snippets Groups Projects

Resolve "import *"

Merged Timothy Smith requested to merge 13-import into master
All threads resolved!
1 file
+ 2
2
Compare changes
  • Side-by-side
  • Inline
+ 2
2
@@ -69,7 +69,7 @@ def test_lax_wavespeeds(
("1 -1 -2 -3 11,2 -4 -8 -12 64", "z",
"-3 -3 -3 -1.50333705 -4.49666295,-6 -6 -6 -4.50333705 -7.49666295")
])
def test_pointwise_eigenvalues(
def test_pointwise_eigenvalues_ideal_gas(
ctx_factory, states_str, direction, lam_expected_str):
prg = u.get_weno_program_with_root_kernel("pointwise_eigenvalues")
queue = u.get_queue(ctx_factory)
@@ -101,7 +101,7 @@ def test_pointwise_eigenvalues(
("1 -1 -2 -3 11,2 -4 -8 -12 64", "-2 2 5.6 6 -25.2,-8 16 35.2 48 -268.8", "y"),
("1 -1 -2 -3 11,2 -4 -8 -12 64", "-3 3 6 10.6 -37.8,-12 24 48 75.2 -403.2", "z")
])
def test_roe_uniform_grid(ctx_factory, states_str, fluxes_str, direction):
def test_roe_uniform_grid_ideal_gas(ctx_factory, states_str, fluxes_str, direction):
def identity_matrix(n):
return np.identity(n).astype(np.float32).copy(order="F")
Loading