From 46befc747f307406b8a9d27d03baa5467e3e07a6 Mon Sep 17 00:00:00 2001 From: Andreas Kloeckner Date: Mon, 22 Oct 2018 00:02:44 -0500 Subject: [PATCH] Boundary interpolation test: don't build full matrices for big problems --- test/test_meshmode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_meshmode.py b/test/test_meshmode.py index b90586ea..d90f1a49 100644 --- a/test/test_meshmode.py +++ b/test/test_meshmode.py @@ -155,7 +155,7 @@ def test_boundary_interpolation(ctx_factory, group_factory, boundary_tag, bdry_f = f(bdry_x) bdry_f_2 = bdry_connection(queue, vol_f) - if mesh_name == "blob" and dim == 2: + if mesh_name == "blob" and dim == 2 and mesh.nelements < 500: mat = bdry_connection.full_resample_matrix(queue).get(queue) bdry_f_2_by_mat = mat.dot(vol_f.get()) -- GitLab