diff options
author | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-10-07 16:42:41 +0200 |
---|---|---|
committer | Willem Jan Palenstijn <Willem.Jan.Palenstijn@cwi.nl> | 2016-10-13 16:40:57 +0200 |
commit | e1d094bd07933733e5d9936076c78ab77f265e37 (patch) | |
tree | d1a8b9893ccf07b4e1dabb10c50fa3a3d189b314 /cuda/3d/fdk.cu | |
parent | 8f2b55a66db9747419e75dae5973281a7536b934 (diff) | |
download | astra-e1d094bd07933733e5d9936076c78ab77f265e37.tar.gz astra-e1d094bd07933733e5d9936076c78ab77f265e37.tar.bz2 astra-e1d094bd07933733e5d9936076c78ab77f265e37.tar.xz astra-e1d094bd07933733e5d9936076c78ab77f265e37.zip |
Increase max angle count for Parker Weighting
Diffstat (limited to 'cuda/3d/fdk.cu')
-rw-r--r-- | cuda/3d/fdk.cu | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cuda/3d/fdk.cu b/cuda/3d/fdk.cu index d847eee..7c3ee18 100644 --- a/cuda/3d/fdk.cu +++ b/cuda/3d/fdk.cu @@ -62,7 +62,7 @@ static const unsigned int g_anglesPerWeightBlock = 16; static const unsigned int g_detBlockU = 32; static const unsigned int g_detBlockV = 32; -static const unsigned g_MaxAngles = 2048; +static const unsigned g_MaxAngles = 12000; __constant__ float gC_angle_sin[g_MaxAngles]; __constant__ float gC_angle_cos[g_MaxAngles]; |