Skip to content

Commit 92d1b54

Browse files
committed
test(fix): check only our code
1 parent f309568 commit 92d1b54

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

test/manopt/bounded_norm_update_rule_tests.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,9 +82,9 @@
8282
for limit in (1, 1.0, 1.0f0), p in (zeros(Float64, 3), zeros(Float32, 3))
8383
cpa = DefaultManoptProblem(M, ManifoldGradientObjective(f, grad_f))
8484
gst = GradientDescentState(M; p = zero(p))
85-
@test_opt BoundedNormUpdateRule(limit)(cpa, gst, 1)
86-
@test_opt BoundedNormUpdateRule(static(limit))(cpa, gst, 1)
87-
@test_opt BoundedNormUpdateRule(
85+
@test_opt target_modules=(ExponentialFamilyProjection,) BoundedNormUpdateRule(limit)(cpa, gst, 1)
86+
@test_opt target_modules=(ExponentialFamilyProjection,) BoundedNormUpdateRule(static(limit))(cpa, gst, 1)
87+
@test_opt target_modules=(ExponentialFamilyProjection,) BoundedNormUpdateRule(
8888
static(limit);
8989
direction = BoundedNormUpdateRule(limit),
9090
)(

0 commit comments

Comments
 (0)