From d1151bbe3f6b286447df3a5f033810413cbc2950 Mon Sep 17 00:00:00 2001 From: Magnus Ulimoen Date: Fri, 4 Sep 2020 17:35:30 +0200 Subject: [PATCH] Fix fallback bug --- sbp/src/operators/upwind4.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbp/src/operators/upwind4.rs b/sbp/src/operators/upwind4.rs index 5c17ffc..f5c38d5 100644 --- a/sbp/src/operators/upwind4.rs +++ b/sbp/src/operators/upwind4.rs @@ -388,7 +388,7 @@ impl UpwindOperator2d for (&UO, &Upwind4) { ([1, _], [1, _]) if prev.len_of(Axis(0)) % SimdT::lanes() == 0 => { diss_simd_col(prev, fut); } - ([1, _], [1, _]) => diff_op_row( + ([1, _], [1, _]) => diff_op_col( Upwind4::DISS_BLOCK, Upwind4::DISS_DIAG, super::Symmetry::Symmetric,