Skip to content

v0.4.3

Latest
Compare
Choose a tag to compare
@github-actions github-actions released this 14 Jan 19:36
6cbe888

FastDifferentiation v0.4.3

Diff since v0.4.2

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: