This repository was archived by the owner on Aug 22, 2025. It is now read-only.
Commit 5b0e1e1
Fix allocation in auto_jacvec!
Before:
```julia
julia> @Btime auto_jacvec!($dy, $f, $x, $v, $cache1, $cache2);
99.454 μs (1200 allocations: 32.81 KiB)
```
After:
```julia
julia> @Btime auto_jacvec!($dy, $f, $x, $v, $cache1, $cache2);
44.668 μs (0 allocations: 0 bytes)
```
Co-authored-by: Chris Elrod <[email protected]>1 parent 66a0303 commit 5b0e1e1
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
9 | 9 | | |
10 | 10 | | |
11 | 11 | | |
12 | | - | |
| 12 | + | |
13 | 13 | | |
14 | 14 | | |
15 | 15 | | |
| |||
0 commit comments