From 1c68a80e624f98d6cbe4ee132f5437df408057d9 Mon Sep 17 00:00:00 2001 From: Guillaume Dalle <22795598+gdalle@users.noreply.github.com> Date: Thu, 8 Aug 2024 08:46:11 +0200 Subject: [PATCH] Typo --- DifferentiationInterface/src/sparse/jacobian.jl | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DifferentiationInterface/src/sparse/jacobian.jl b/DifferentiationInterface/src/sparse/jacobian.jl index 3521b0967..d175636a3 100644 --- a/DifferentiationInterface/src/sparse/jacobian.jl +++ b/DifferentiationInterface/src/sparse/jacobian.jl @@ -189,7 +189,7 @@ function sparse_jacobian_aux( ) where {FY,B} @compat (; coloring_result, batched_seeds, pushforward_batched_extras) = extras dense_backend = dense_ad(backend) - Ng = length(column_groups(coloring_results)) + Ng = length(column_groups(coloring_result)) pushforward_batched_extras_same = prepare_pushforward_batched_same_point( f_or_f!y..., dense_backend, x, batched_seeds[1], pushforward_batched_extras @@ -218,7 +218,7 @@ function sparse_jacobian_aux( ) where {FY,B} @compat (; coloring_result, batched_seeds, pullback_batched_extras) = extras dense_backend = dense_ad(backend) - Ng = length(row_groups(coloring_results)) + Ng = length(row_groups(coloring_result)) pullback_batched_extras_same = prepare_pullback_batched_same_point( f_or_f!y..., dense_backend, x, batched_seeds[1], pullback_batched_extras @@ -253,7 +253,7 @@ function sparse_jacobian_aux!( pushforward_batched_extras, ) = extras dense_backend = dense_ad(backend) - Ng = length(column_groups(coloring_results)) + Ng = length(column_groups(coloring_result)) pushforward_batched_extras_same = prepare_pushforward_batched_same_point( f_or_f!y..., dense_backend, x, batched_seeds[1], pushforward_batched_extras @@ -292,7 +292,7 @@ function sparse_jacobian_aux!( pullback_batched_extras, ) = extras dense_backend = dense_ad(backend) - Ng = length(row_groups(coloring_results)) + Ng = length(row_groups(coloring_result)) pullback_batched_extras_same = prepare_pullback_batched_same_point( f_or_f!y..., dense_backend, x, batched_seeds[1], pullback_batched_extras