From 99453d29771a39b2ee24009874ebddc7fbe90702 Mon Sep 17 00:00:00 2001 From: John Reid Date: Fri, 1 Oct 2021 12:16:50 +0000 Subject: [PATCH] Fix too many values to unpack. --- genbmm/sparse.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/genbmm/sparse.py b/genbmm/sparse.py index 035713c..2aa1eee 100644 --- a/genbmm/sparse.py +++ b/genbmm/sparse.py @@ -587,7 +587,7 @@ def forward(ctx, a, a_lu, a_ld, b, b_lu, b_ld, o_lu, o_ld): at = BandedMatrix(a, a_lu, a_ld, -1e9) bt = BandedMatrix(b, b_lu, b_ld, -1e9) - _, indices2 = _genbmm.forward_band( + _, indices2, _ = _genbmm.forward_band( bt.data.contiguous(), bt.lu, bt.ld, at.data.contiguous(), at.lu, at.ld, 1 )