From 219577713ff2e5cae5cc263fbf7596a72d635592 Mon Sep 17 00:00:00 2001 From: Tim Holy Date: Fri, 7 Apr 2017 14:01:18 -0500 Subject: [PATCH] Avoid timeouts with --inline=no by using 1000x fewer points --- test/scaling/scaling.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/scaling/scaling.jl b/test/scaling/scaling.jl index b0a210ba..03af01c4 100644 --- a/test/scaling/scaling.jl +++ b/test/scaling/scaling.jl @@ -51,7 +51,7 @@ sitp32 = @inferred scale(interpolate(Float32[testfunction(x,y) for x in -5:.5:5, # Iteration itp = interpolate(rand(3,3,3), BSpline(Quadratic(Flat())), OnCell()) -knots = map(d->1:100:201, 1:3) +knots = map(d->1:10:21, 1:3) sitp = @inferred scale(itp, knots...) function foo!(dest, sitp) i = 0