summaryrefslogtreecommitdiffstats
path: root/demos/demo_gpu_regularisers.py
diff options
context:
space:
mode:
Diffstat (limited to 'demos/demo_gpu_regularisers.py')
-rw-r--r--demos/demo_gpu_regularisers.py6
1 files changed, 2 insertions, 4 deletions
diff --git a/demos/demo_gpu_regularisers.py b/demos/demo_gpu_regularisers.py
index 5131847..c6114db 100644
--- a/demos/demo_gpu_regularisers.py
+++ b/demos/demo_gpu_regularisers.py
@@ -176,8 +176,7 @@ pars = {'algorithm' : PD_TV, \
'tolerance_constant':1e-06,\
'methodTV': 0 ,\
'nonneg': 1,
- 'lipschitz_const' : 8,
- 'tau' : 0.0025}
+ 'lipschitz_const' : 8}
print ("#############PD TV CPU####################")
start_time = timeit.default_timer()
@@ -187,8 +186,7 @@ start_time = timeit.default_timer()
pars['tolerance_constant'],
pars['methodTV'],
pars['nonneg'],
- pars['lipschitz_const'],
- pars['tau'],'gpu')
+ pars['lipschitz_const'],'gpu')
Qtools = QualityTools(Im, pd_gpu)
pars['rmse'] = Qtools.rmse()