From f7315a37919afde9d77e7e4b1556b385ec5521f9 Mon Sep 17 00:00:00 2001 From: Ben Mares Date: Sun, 21 Aug 2022 15:22:01 +0200 Subject: [PATCH] Remove unused IS_FLOAT32 and IS_WINDOWS from test_ode --- pymc/tests/test_ode.py | 5 ----- 1 file changed, 5 deletions(-) diff --git a/pymc/tests/test_ode.py b/pymc/tests/test_ode.py index 83c36d49900..6b0835ccdfe 100644 --- a/pymc/tests/test_ode.py +++ b/pymc/tests/test_ode.py @@ -12,8 +12,6 @@ # See the License for the specific language governing permissions and # limitations under the License. -import sys - import aesara import aesara.tensor as at import numpy as np @@ -28,9 +26,6 @@ from pymc.ode.utils import augment_system from pymc.tests.helpers import fast_unstable_sampling_mode -IS_FLOAT32 = aesara.config.floatX == "float32" -IS_WINDOWS = sys.platform == "win32" - def test_gradients(): """Tests the computation of the sensitivities from the Aesara computation graph"""