diff --git a/examples/fluids/qfunctions/sgs_dd_training.h b/examples/fluids/qfunctions/sgs_dd_training.h index eed8d5b301..803f959a1d 100644 --- a/examples/fluids/qfunctions/sgs_dd_training.h +++ b/examples/fluids/qfunctions/sgs_dd_training.h @@ -59,8 +59,6 @@ CEED_QFUNCTION_HELPER int ComputeSGS_DDAnisotropicTrainingDataNodal(void *ctx, C v[3 + 6][i] = (velo_prod[DIFF_FILTER_VELOCITY_SQUARED_YZ][i] - s.Y.velocity[1] * s.Y.velocity[2]) * inv_multiplicity[i]; v[4 + 6][i] = (velo_prod[DIFF_FILTER_VELOCITY_SQUARED_XZ][i] - s.Y.velocity[0] * s.Y.velocity[2]) * inv_multiplicity[i]; v[5 + 6][i] = (velo_prod[DIFF_FILTER_VELOCITY_SQUARED_XY][i] - s.Y.velocity[0] * s.Y.velocity[1]) * inv_multiplicity[i]; - - for (int j = 0; j < 12; j++) v[j][i] = inv_multiplicity[i] * j; } return 0; } diff --git a/examples/fluids/tests-output/y0_output.npy b/examples/fluids/tests-output/y0_output.npy index 46ddcdddaa..680edd855f 100644 Binary files a/examples/fluids/tests-output/y0_output.npy and b/examples/fluids/tests-output/y0_output.npy differ diff --git a/tests/junit.py b/tests/junit.py index f27c3b284a..041582c172 100755 --- a/tests/junit.py +++ b/tests/junit.py @@ -195,7 +195,7 @@ def check_allowed_stdout(self, test: str) -> bool: # run tests if 'smartsim' in args.test: - has_smartsim: bool = args.smartredis_dir and Path(args.smartredis_dir).is_file() + has_smartsim: bool = args.smartredis_dir and Path(args.smartredis_dir).is_dir() test_cases = [] if args.mode is RunMode.TAP: