Skip to content

Commit b56d062

Browse files
committed
fix: skip matrix tests with fastdifferentiation
1 parent 4feb596 commit b56d062

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

DifferentiationInterface/test/Back/SymbolicBackends/fastdifferentiation.jl

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,13 @@ for backend in [AutoFastDifferentiation(), AutoSparse(AutoFastDifferentiation())
1515
@test check_inplace(backend)
1616
end
1717

18-
test_differentiation(AutoFastDifferentiation(); logging=LOGGING);
18+
test_differentiation(
19+
AutoFastDifferentiation(),
20+
filter(default_scenarios()) do s
21+
!(s.x isa Matrix) && !(s.y isa Matrix)
22+
end;
23+
logging=LOGGING,
24+
);
1925

2026
test_differentiation(
2127
AutoSparse(AutoFastDifferentiation()),

0 commit comments

Comments
 (0)