From 6d1c81486c8fa38e206da65596ffec436c16a5c4 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sat, 12 Nov 2011 11:05:44 -0500 Subject: [PATCH] Don't inline catmull_rom for much faster compiles. --- cuburn/code/interp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cuburn/code/interp.py b/cuburn/code/interp.py index bac8145..c6bfae3 100644 --- a/cuburn/code/interp.py +++ b/cuburn/code/interp.py @@ -279,7 +279,7 @@ int bitwise_binsearch(const float *hay, float needle) { return lo; } -__device__ +__device__ __noinline__ float catmull_rom(const float *times, const float *knots, float t) { int idx = bitwise_binsearch(times, t);