diff options
author | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-29 13:36:11 +0000 |
---|---|---|
committer | Edoardo Pasca <edo.paskino@gmail.com> | 2018-01-30 12:03:59 +0000 |
commit | 95106cb6620e04c70a3d41d2db84322f9a58afb3 (patch) | |
tree | 24786ee6aeda6355c591f419f4f394789ba70011 /Wrappers/Python/setup.py | |
parent | 9a56fd879fe0f604c1040116463e112eb7e2a8de (diff) | |
download | regularization-95106cb6620e04c70a3d41d2db84322f9a58afb3.tar.gz regularization-95106cb6620e04c70a3d41d2db84322f9a58afb3.tar.bz2 regularization-95106cb6620e04c70a3d41d2db84322f9a58afb3.tar.xz regularization-95106cb6620e04c70a3d41d2db84322f9a58afb3.zip |
renamed fista_module_gpu to gpu_regularizers.pyx
Cleaned test_cpu_regularizers.py
Diffstat (limited to 'Wrappers/Python/setup.py')
-rw-r--r-- | Wrappers/Python/setup.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Wrappers/Python/setup.py b/Wrappers/Python/setup.py index 951146a..00c93fc 100644 --- a/Wrappers/Python/setup.py +++ b/Wrappers/Python/setup.py @@ -60,7 +60,7 @@ setup( cmdclass = {'build_ext': build_ext}, ext_modules = [Extension("ccpi.filters.gpu_regularizers", sources=[ - os.path.join("." , "src", "fista_module_gpu.pyx" ), + os.path.join("." , "src", "gpu_regularizers.pyx" ), ], include_dirs=extra_include_dirs, library_dirs=extra_library_dirs, @@ -79,6 +79,7 @@ setup( cmdclass = {'build_ext': build_ext}, ext_modules = [Extension("ccpi.filters.cpu_regularizers", sources=[os.path.join("." , "src", "fista_module.cpp" ), + os.path.join("." , "src", "cpu_regularizers.pyx" ) # os.path.join("@CMAKE_SOURCE_DIR@" , "main_func" , "regularizers_CPU", "FGP_TV_core.c"), # os.path.join("@CMAKE_SOURCE_DIR@" , "main_func" , "regularizers_CPU", "SplitBregman_TV_core.c"), # os.path.join("@CMAKE_SOURCE_DIR@" , "main_func" , "regularizers_CPU", "LLT_model_core.c"), |