Skip to content

Commit 7a7a7a2

Browse files
committed
Fix format
1 parent 1e2ef7e commit 7a7a7a2

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

src/Nonlinear/ReverseAD/forward_over_reverse.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,13 @@ function _eval_hessian_inner(
6161
# leftover chunk
6262
remaining = num_products - CHUNK * num_chunks
6363
if remaining > 0
64-
_eval_hessian_chunk(d, ex, CHUNK * num_chunks + 1, remaining, Val(CHUNK))
64+
_eval_hessian_chunk(
65+
d,
66+
ex,
67+
CHUNK * num_chunks + 1,
68+
remaining,
69+
Val(CHUNK),
70+
)
6571
end
6672
want, got = nzcount + length(ex.hess_I), length(H)
6773
if want > got

0 commit comments

Comments
 (0)