From 90361f0b95ecd0917e0615e54fa213e9c0d88bf3 Mon Sep 17 00:00:00 2001 From: Quentin Bourgerie Date: Wed, 26 Oct 2022 15:55:42 +0200 Subject: [PATCH] fix/chore: Remove custom gpu deleted target for tests --- compiler/tests/end_to_end_tests/CMakeLists.txt | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/compiler/tests/end_to_end_tests/CMakeLists.txt b/compiler/tests/end_to_end_tests/CMakeLists.txt index 46d0d01e1..cbbd9f1ea 100644 --- a/compiler/tests/end_to_end_tests/CMakeLists.txt +++ b/compiler/tests/end_to_end_tests/CMakeLists.txt @@ -11,6 +11,7 @@ include_directories(${CONCRETE_OPTIMIZER_DIR}/concrete-optimizer-cpp/src/cpp) if(NOT ${CMAKE_SYSTEM_NAME} MATCHES "Darwin") link_libraries( + # usefull for old gcc versions -Wl,--allow-multiple-definition # static concrete-optimizer and concrete shares some code ) @@ -35,7 +36,3 @@ if(CONCRETELANG_DATAFLOW_EXECUTION_ENABLED) add_concretecompiler_unittest(end_to_end_jit_distributed end_to_end_jit_distributed.cc globals.cc) add_concretecompiler_unittest(end_to_end_jit_aes_short end_to_end_jit_aes_short.cc globals.cc) endif() - -if(CONCRETELANG_CUDA_SUPPORT) - add_concretecompiler_unittest(end_to_end_gpu_test end_to_end_gpu_test.cc globals.cc) -endif()