diff options
author | Daniil Kazantsev <dkazanc@hotmail.com> | 2019-11-28 23:01:03 +0000 |
---|---|---|
committer | Daniil Kazantsev <dkazanc@hotmail.com> | 2019-11-28 23:01:03 +0000 |
commit | c65291e6b987283e4767a8ad2bd2d2433ca3782e (patch) | |
tree | c3b660c9b2151f2ff1a12352daf73dfc90d1c3a3 /src/Python/ccpi | |
parent | cdef6a981f1772ed04fe44bbe2b8251983a4ba7a (diff) | |
download | regularization-c65291e6b987283e4767a8ad2bd2d2433ca3782e.tar.gz regularization-c65291e6b987283e4767a8ad2bd2d2433ca3782e.tar.bz2 regularization-c65291e6b987283e4767a8ad2bd2d2433ca3782e.tar.xz regularization-c65291e6b987283e4767a8ad2bd2d2433ca3782e.zip |
all work completed on gpu version of pdtv
Diffstat (limited to 'src/Python/ccpi')
-rw-r--r-- | src/Python/ccpi/filters/regularisers.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Python/ccpi/filters/regularisers.py b/src/Python/ccpi/filters/regularisers.py index bc745fe..5f4001a 100644 --- a/src/Python/ccpi/filters/regularisers.py +++ b/src/Python/ccpi/filters/regularisers.py @@ -4,7 +4,7 @@ script which assigns a proper device core function based on a flag ('cpu' or 'gp from ccpi.filters.cpu_regularisers import TV_ROF_CPU, TV_FGP_CPU, TV_PD_CPU, TV_SB_CPU, dTV_FGP_CPU, TNV_CPU, NDF_CPU, Diff4th_CPU, TGV_CPU, LLT_ROF_CPU, PATCHSEL_CPU, NLTV_CPU try: - from ccpi.filters.gpu_regularisers import TV_ROF_GPU, TV_FGP_GPU, TV_SB_GPU, dTV_FGP_GPU, NDF_GPU, Diff4th_GPU, TGV_GPU, LLT_ROF_GPU, PATCHSEL_GPU + from ccpi.filters.gpu_regularisers import TV_ROF_GPU, TV_FGP_GPU, TV_PD_GPU, TV_SB_GPU, dTV_FGP_GPU, NDF_GPU, Diff4th_GPU, TGV_GPU, LLT_ROF_GPU, PATCHSEL_GPU gpu_enabled = True except ImportError: gpu_enabled = False @@ -64,7 +64,7 @@ def PD_TV(inputData, regularisation_parameter, iterations, lipschitz_const, tau) elif device == 'gpu' and gpu_enabled: - return TV_PD_CPU(inputData, + return TV_PD_GPU(inputData, regularisation_parameter, iterations, tolerance_param, |