From ae6b92fdc3795292b0b0c0bfa6e18d813256f873 Mon Sep 17 00:00:00 2001 From: Dennis Yatunin Date: Thu, 28 Mar 2024 15:05:27 -0700 Subject: [PATCH] foo --- test/test_and_analyze.jl | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/test/test_and_analyze.jl b/test/test_and_analyze.jl index 85b074d..83aa059 100644 --- a/test/test_and_analyze.jl +++ b/test/test_and_analyze.jl @@ -296,12 +296,14 @@ for n in (1, 10, 33), is_uniform in (n == 1 ? (true,) : (true, false)) Tuple(Iterators.product(itr1, itr2)), full_str, ) - @test_unrolled( - (itr1, itr2), - unrolled_product(itr1, itr2, itr1), - Tuple(Iterators.product(itr1, itr2, itr1)), - full_str, - ) + if n <= 10 # This can take several minutes to compile when n is large. + @test_unrolled( + (itr1, itr2), + unrolled_product(itr1, itr2, itr1), + Tuple(Iterators.product(itr1, itr2, itr1)), + full_str, + ) + end end end