Skip to content
Snippets Groups Projects
Commit 0841e700 authored by Cyril Moineau's avatar Cyril Moineau
Browse files

Remove dependency to backend_cpu.

parent 15423a7c
No related branches found
No related tags found
2 merge requests!15version 0.2.0,!8Remove backend_cpu dependency
Pipeline #38483 passed
...@@ -36,8 +36,9 @@ enable_language(CUDA) ...@@ -36,8 +36,9 @@ enable_language(CUDA)
find_package(CUDAToolkit REQUIRED) find_package(CUDAToolkit REQUIRED)
find_package(aidge_core REQUIRED) find_package(aidge_core REQUIRED)
find_package(aidge_backend_cpu REQUIRED) if(TEST)
find_package(aidge_backend_cpu REQUIRED)
endif()
############################################## ##############################################
# Create target and set properties # Create target and set properties
...@@ -48,11 +49,17 @@ add_library(${module_name} ${src_files} ${inc_files}) ...@@ -48,11 +49,17 @@ add_library(${module_name} ${src_files} ${inc_files})
target_link_libraries(${module_name} target_link_libraries(${module_name}
PUBLIC PUBLIC
_aidge_core # _ is added because we link the target not the project _aidge_core # _ is added because we link the target not the project
_aidge_backend_cpu # _ is added because we link the target not the project
CUDA::cudart CUDA::cudart
cudnn cudnn
) )
if(TEST)
target_link_libraries(${module_name}
PUBLIC
_aidge_backend_cpu # _ is added because we link the target not the project
)
endif()
#Set target properties #Set target properties
target_include_directories(${module_name} target_include_directories(${module_name}
PUBLIC PUBLIC
......
...@@ -62,10 +62,10 @@ class CMakeBuild(build_ext): ...@@ -62,10 +62,10 @@ class CMakeBuild(build_ext):
os.chdir(str(build_temp)) os.chdir(str(build_temp))
# Impose to use the executable of the python # Impose to use the executable of the python
# used to launch setup.py to setup PythonInterp # used to launch setup.py to setup PythonInterp
param_py = "-DPYTHON_EXECUTABLE=" + sys.executable param_py = "-DPYTHON_EXECUTABLE=" + sys.executable
compile_type = 'Debug' compile_type = 'Debug'
install_path = os.path.join(sys.prefix, "lib", "libAidge") if "AIDGE_INSTALL" not in os.environ else os.environ["AIDGE_INSTALL"] install_path = os.path.join(sys.prefix, "lib", "libAidge") if "AIDGE_INSTALL" not in os.environ else os.environ["AIDGE_INSTALL"]
...@@ -85,11 +85,11 @@ class CMakeBuild(build_ext): ...@@ -85,11 +85,11 @@ class CMakeBuild(build_ext):
for file in files: for file in files:
if (file.endswith('.so') or file.endswith('.pyd')) and (root != str(aidge_package.absolute())): if (file.endswith('.so') or file.endswith('.pyd')) and (root != str(aidge_package.absolute())):
currentFile=os.path.join(root, file) currentFile=os.path.join(root, file)
shutil.copy(currentFile, str(aidge_package.absolute())) shutil.copy(currentFile, str(aidge_package.absolute()))
# Copy version.txt in aidge_package # Copy version.txt in aidge_package
os.chdir(os.path.dirname(__file__)) os.chdir(os.path.dirname(__file__))
shutil.copy("version.txt", str(aidge_package.absolute())) shutil.copy("version.txt", str(aidge_package.absolute()))
if __name__ == '__main__': if __name__ == '__main__':
...@@ -108,7 +108,7 @@ if __name__ == '__main__': ...@@ -108,7 +108,7 @@ if __name__ == '__main__':
cmdclass={ cmdclass={
'build_ext': CMakeBuild, 'build_ext': CMakeBuild,
}, },
install_requires=['aidge_core', 'aidge_backend_cpu'], install_requires=['aidge_core'],
zip_safe=False, zip_safe=False,
) )
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment