@@ -48,7 +48,7 @@ function test_column_integral_definite!(center_space)
48
48
@test max_relative_error <= 0.006 # Less than 0.6% error.
49
49
50
50
cuda = (AnyFrameModule (CUDA),)
51
- @test_opt ignored_modules = cuda column_integral_definite! (∫u_test, ᶜu)
51
+ @test_opt stacktrace_types_limit = 4 ignored_modules = cuda column_integral_definite! (∫u_test, ᶜu)
52
52
53
53
test_allocs (@allocated column_integral_definite! (∫u_test, ᶜu))
54
54
end
@@ -70,7 +70,7 @@ function test_column_integral_indefinite!(center_space)
70
70
@test max_relative_error <= 0.006 # Less than 0.6% error at the top level.
71
71
72
72
cuda = (AnyFrameModule (CUDA),)
73
- @test_opt ignored_modules = cuda column_integral_indefinite! (ᶠ∫u_test, ᶜu)
73
+ @test_opt stacktrace_types_limit = 4 ignored_modules = cuda column_integral_indefinite! (ᶠ∫u_test, ᶜu)
74
74
75
75
test_allocs (@allocated column_integral_indefinite! (ᶠ∫u_test, ᶜu))
76
76
end
@@ -93,7 +93,7 @@ function test_column_integral_indefinite_fn!(center_space)
93
93
@test max_relative_error <= 0.006 # Less than 0.6% error at the top level.
94
94
95
95
cuda = (AnyFrameModule (CUDA),)
96
- @test_opt ignored_modules = cuda column_integral_indefinite! (
96
+ @test_opt stacktrace_types_limit = 4 ignored_modules = cuda column_integral_indefinite! (
97
97
fn,
98
98
ᶠ∫u_test,
99
99
)
@@ -132,7 +132,7 @@ function test_column_reduce_and_accumulate!(center_space)
132
132
set_output! = () -> column_reduce! (f, output, input; init, transform)
133
133
set_output! ()
134
134
@test output == reference_output
135
- @test_opt ignored_modules = (AnyFrameModule (CUDA),) set_output! ()
135
+ @test_opt stacktrace_types_limit = 4 ignored_modules = (AnyFrameModule (CUDA),) set_output! ()
136
136
test_allocs (@allocated set_output! ())
137
137
end
138
138
@@ -148,7 +148,7 @@ function test_column_reduce_and_accumulate!(center_space)
148
148
() -> column_accumulate! (f, output, input; init, transform)
149
149
set_output! ()
150
150
@test output == reference_output
151
- @test_opt ignored_modules = (AnyFrameModule (CUDA),) set_output! ()
151
+ @test_opt stacktrace_types_limit = 4 ignored_modules = (AnyFrameModule (CUDA),) set_output! ()
152
152
test_allocs (@allocated set_output! ())
153
153
end
154
154
end
0 commit comments