Skip to content

Commit dff4579

Browse files
committed
Fixes
1 parent 2cfb3ce commit dff4579

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

DifferentiationInterfaceTest/src/tests/correctness_eval.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -767,10 +767,10 @@ for op in ALL_OPS
767767
end
768768
foreach(preptup_cands_val) do preptup_val
769769
res1_out1_val, res2_out1_val = $val_and_op(
770-
f, preptup_noval..., ba, x, t, contexts...
770+
f, preptup_val..., ba, x, t, contexts...
771771
)
772772
res1_out2_val, res2_out2_val = $val_and_op(
773-
f, preptup_noval..., ba, x, t, contexts...
773+
f, preptup_val..., ba, x, t, contexts...
774774
)
775775
@test res1_out1_val scen.res1
776776
@test res1_out2_val scen.res1
@@ -827,10 +827,10 @@ for op in ALL_OPS
827827
res1_in1_val, res2_in1_val = mysimilar(res1), mysimilar(res2)
828828
res1_in2_val, res2_in2_val = mysimilar(res1), mysimilar(res2)
829829
res1_out1_val, res2_out1_val = $val_and_op!(
830-
f, res1_in1_val, res2_in1_val, preptup_noval..., ba, x, t, contexts...
830+
f, res1_in1_val, res2_in1_val, preptup_val..., ba, x, t, contexts...
831831
)
832832
res1_out2_val, res2_out2_val = $val_and_op!(
833-
f, res1_in2_val, res2_in2_val, preptup_noval..., ba, x, t, contexts...
833+
f, res1_in2_val, res2_in2_val, preptup_val..., ba, x, t, contexts...
834834
)
835835
@test res1_in1_val === res1_out1_val
836836
@test res1_in2_val === res1_out2_val

0 commit comments

Comments
 (0)