Skip to content

Commit

Permalink
Added missing function handle to ctest_wv_euler_cu
Browse files Browse the repository at this point in the history
  • Loading branch information
johnson452 committed Oct 5, 2024
1 parent d4cf53d commit 2fee078
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions unit/ctest_wv_euler_cu.cu
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ void ker_cu_wv_euler_test(const struct gkyl_wv_eqn *eqn, int *nfail)

double q_l[5], q_g[5];
for (int d=0; d<3; ++d) {
eqn->rotate_to_local_func(tau1[d], tau2[d], norm[d], q, q_l);
eqn->rotate_to_global_func(tau1[d], tau2[d], norm[d], q_l, q_g);
eqn->rotate_to_local_func(eqn, tau1[d], tau2[d], norm[d], q, q_l);
eqn->rotate_to_global_func(eqn, tau1[d], tau2[d], norm[d], q_l, q_g);

for (int m=0; m<5; ++m) GKYL_CU_CHECK( q[m] == q_g[m], nfail );
}
Expand Down

0 comments on commit 2fee078

Please sign in to comment.