Don't inline catmull_rom for much faster compiles.

This commit is contained in:
Steven Robertson 2011-11-12 11:05:44 -05:00
parent 24c0c8ee56
commit 6d1c81486c

View File

@ -279,7 +279,7 @@ int bitwise_binsearch(const float *hay, float needle) {
return lo; return lo;
} }
__device__ __device__ __noinline__
float catmull_rom(const float *times, const float *knots, float t) { float catmull_rom(const float *times, const float *knots, float t) {
int idx = bitwise_binsearch(times, t); int idx = bitwise_binsearch(times, t);