Skip to content

Commit a7de5e8

Browse files
committed
fix: missing arguments
1 parent 7ad23c3 commit a7de5e8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

ext/DynamicExpressionsLoopVectorizationExt.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ function deg1_l2_ll0_lr0_eval(
5757
@return_on_nonfinite_val(eval_options, x_l, cX)
5858
x = op(x_l)::T
5959
@return_on_nonfinite_val(eval_options, x, cX)
60-
return ResultOk(get_filled_array(eval_options.buffer, x, cX, axes(cX, 2)))
60+
return ResultOk(get_filled_array(eval_options.buffer, x, cX, axes(cX, 2)), true)
6161
elseif tree.l.l.constant
6262
val_ll = tree.l.l.val
6363
@return_on_nonfinite_val(eval_options, val_ll, cX)
@@ -107,7 +107,7 @@ function deg1_l1_ll0_eval(
107107
@return_on_nonfinite_val(eval_options, x_l, cX)
108108
x = op(x_l)::T
109109
@return_on_nonfinite_val(eval_options, x, cX)
110-
return ResultOk(get_filled_array(eval_options.buffer, x, cX, axes(cX, 2)))
110+
return ResultOk(get_filled_array(eval_options.buffer, x, cX, axes(cX, 2)), true)
111111
else
112112
feature_ll = tree.l.l.feature
113113
cumulator = get_array(eval_options.buffer, cX, axes(cX, 2))
@@ -133,7 +133,7 @@ function deg2_l0_r0_eval(
133133
@return_on_nonfinite_val(eval_options, val_r, cX)
134134
x = op(val_l, val_r)::T
135135
@return_on_nonfinite_val(eval_options, x, cX)
136-
return ResultOk(get_filled_array(eval_options.buffer, x, cX, axes(cX, 2)))
136+
return ResultOk(get_filled_array(eval_options.buffer, x, cX, axes(cX, 2)), true)
137137
elseif tree.l.constant
138138
cumulator = get_array(eval_options.buffer, cX, axes(cX, 2))
139139
val_l = tree.l.val

0 commit comments

Comments
 (0)