diff options
author | algol <dkazanc@hotmail.com> | 2018-04-16 15:16:32 +0100 |
---|---|---|
committer | algol <dkazanc@hotmail.com> | 2018-04-16 15:16:32 +0100 |
commit | 57727584760e6b1a980071587e1f1e8910c7d6a3 (patch) | |
tree | b6dd09825750854bf6c87cee8e544c2278ac5586 /Wrappers/Python/ccpi | |
parent | 37e460b0eb2f8d67621dec37aef2d51efa192435 (diff) | |
download | regularization-57727584760e6b1a980071587e1f1e8910c7d6a3.tar.gz regularization-57727584760e6b1a980071587e1f1e8910c7d6a3.tar.bz2 regularization-57727584760e6b1a980071587e1f1e8910c7d6a3.tar.xz regularization-57727584760e6b1a980071587e1f1e8910c7d6a3.zip |
SB TV demos all work
Diffstat (limited to 'Wrappers/Python/ccpi')
-rw-r--r-- | Wrappers/Python/ccpi/filters/regularisers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Wrappers/Python/ccpi/filters/regularisers.py b/Wrappers/Python/ccpi/filters/regularisers.py index 53623c0..50c4374 100644 --- a/Wrappers/Python/ccpi/filters/regularisers.py +++ b/Wrappers/Python/ccpi/filters/regularisers.py @@ -2,8 +2,8 @@ script which assigns a proper device core function based on a flag ('cpu' or 'gpu') """ -from ccpi.filters.cpu_regularisers_cython import TV_ROF_CPU, TV_FGP_CPU, dTV_FGP_CPU -from ccpi.filters.gpu_regularisers import TV_ROF_GPU, TV_FGP_GPU, dTV_FGP_GPU +from ccpi.filters.cpu_regularisers_cython import TV_ROF_CPU, TV_FGP_CPU, TV_SB_CPU, dTV_FGP_CPU +from ccpi.filters.gpu_regularisers import TV_ROF_GPU, TV_FGP_GPU, TV_SB_GPU, dTV_FGP_GPU def ROF_TV(inputData, regularisation_parameter, iterations, time_marching_parameter,device='cpu'): |