From f4e9cce9581291c4ea0398dd361c8df246ec0361 Mon Sep 17 00:00:00 2001 From: Brendt Wohlberg Date: Tue, 1 Oct 2024 18:07:07 -0600 Subject: [PATCH] Resolve test failure --- scico/test/linop/xray/test_xray.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scico/test/linop/xray/test_xray.py b/scico/test/linop/xray/test_xray.py index cd7c0dcd..960a9947 100644 --- a/scico/test/linop/xray/test_xray.py +++ b/scico/test/linop/xray/test_xray.py @@ -49,7 +49,7 @@ def test_apply(): def test_apply_adjoint(): im_shape = (12, 13) num_angles = 10 - x = jnp.ones(im_shape) + x = jnp.ones(im_shape, dtype=jnp.float32) angles = jnp.linspace(0, jnp.pi, num=num_angles, endpoint=False)