From dfde813f186a6af122a44acb1421c4aee4e22cc3 Mon Sep 17 00:00:00 2001 From: Gonzalo <456459+grzuy@users.noreply.github.com> Date: Wed, 8 Nov 2023 13:46:23 -0300 Subject: [PATCH] fix compile warning --- lib/candlex/backend.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/candlex/backend.ex b/lib/candlex/backend.ex index 6d10b39..ab48eb3 100644 --- a/lib/candlex/backend.ex +++ b/lib/candlex/backend.ex @@ -858,7 +858,7 @@ defmodule Candlex.Backend do # LinAlg @impl true - def qr({out_q, out_r}, %T{shape: {n, n}} = tensor, opts) do + def qr({out_q, out_r}, %T{shape: {n, n}} = tensor, _opts) do {native_q, native_r} = tensor |> from_nx()