From 797f2edd497c2caa4aca4a243f936bd16abc7cbc Mon Sep 17 00:00:00 2001 From: Jean-Matthieu Etancelin <jean-matthieu.etancelin@univ-pau.fr> Date: Wed, 5 Jun 2019 13:27:45 +0200 Subject: [PATCH] fix fixed point example --- examples/fixed_point/heat_equation.py | 7 ------- 1 file changed, 7 deletions(-) diff --git a/examples/fixed_point/heat_equation.py b/examples/fixed_point/heat_equation.py index 47fdc968b..531b0000e 100644 --- a/examples/fixed_point/heat_equation.py +++ b/examples/fixed_point/heat_equation.py @@ -77,13 +77,6 @@ def compute(args): pseudo_dt = ScalarParameter(name='pseudo_dt', dtype=args.dtype, min_value=eps, initial_value=eps, quiet=True) - # Topologies (needed to fix redistributes between the two problems) - topo_nogh = CartesianTopology( - domain=box, - backend=Backend.HOST, - discretization=CartesianDiscretization(npts, ghosts=(0, 0, 0), default_boundaries=True), - mpi_params=mpi_params) - # Operator for setting iterative method if impl is Implementation.OPENCL: (x0, x1, x2) = box.frame.coords -- GitLab