From 6ae2f6616479c5d2f061a4d30b5266934e273137 Mon Sep 17 00:00:00 2001 From: Fabio Luporini Date: Sat, 23 Sep 2017 11:47:29 +0200 Subject: [PATCH] yask: Leftover fixes --- devito/yask/__init__.py | 2 +- tests/test_yask.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/devito/yask/__init__.py b/devito/yask/__init__.py index 5c22b4e349..27a863c6a7 100644 --- a/devito/yask/__init__.py +++ b/devito/yask/__init__.py @@ -105,7 +105,7 @@ def reset_yask_isa(develop_mode): break yask_configuration['isa'] = isa yask_configuration['arch'] = arch_mapper[isa] -yask_configuration.add('develop-mode', True, [False, True], reset_yask_isa) +yask_configuration.add('develop-mode', True, [False, True], reset_yask_isa) # noqa configuration.add('yask', yask_configuration) diff --git a/tests/test_yask.py b/tests/test_yask.py index b5d2db1c35..156ff4667a 100644 --- a/tests/test_yask.py +++ b/tests/test_yask.py @@ -330,7 +330,7 @@ def model(self): shape = (60, 70, 80) nbpml = 10 return demo_model(spacing=[15, 15, 15], shape=shape, nbpml=nbpml, - preset='layers', ratio=3) + preset='layers-isotropic', ratio=3) @pytest.fixture def time_params(self, model):