FastDifferentiation v0.4.3
Patch release to make multiple input arguments work for code generation. Now this will work correctly:
x = make_variables(:x, 3)
y = make_variables(:y, 3)
f = x .* y
f_callable = make_function(f, x, y)
x_val = ones(3)
y_val = ones(3)
f_val = f_callable(x_val, y_val)
Before the generated code would not address the input args correctly resulting in crashes.
See #105 (comment) for details.
Merged pull requests:
- Bump codecov/codecov-action from 4 to 5 (#102) (@dependabot[bot])
- Fix multi-arg code generation (#105) (@brianguenter)