@@ -48,7 +48,7 @@ function test_column_integral_definite!(center_space)
4848 @test max_relative_error <= 0.006 # Less than 0.6% error.
4949
5050 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)
5252
5353 test_allocs (@allocated column_integral_definite! (∫u_test, ᶜu))
5454end
@@ -70,7 +70,7 @@ function test_column_integral_indefinite!(center_space)
7070 @test max_relative_error <= 0.006 # Less than 0.6% error at the top level.
7171
7272 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)
7474
7575 test_allocs (@allocated column_integral_indefinite! (ᶠ∫u_test, ᶜu))
7676end
@@ -93,7 +93,7 @@ function test_column_integral_indefinite_fn!(center_space)
9393 @test max_relative_error <= 0.006 # Less than 0.6% error at the top level.
9494
9595 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! (
9797 fn,
9898 ᶠ∫u_test,
9999 )
@@ -132,7 +132,7 @@ function test_column_reduce_and_accumulate!(center_space)
132132 set_output! = () -> column_reduce! (f, output, input; init, transform)
133133 set_output! ()
134134 @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! ()
136136 test_allocs (@allocated set_output! ())
137137 end
138138
@@ -148,7 +148,7 @@ function test_column_reduce_and_accumulate!(center_space)
148148 () -> column_accumulate! (f, output, input; init, transform)
149149 set_output! ()
150150 @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! ()
152152 test_allocs (@allocated set_output! ())
153153 end
154154end
0 commit comments