diff --git a/src/Communicate/Communicate.cpp b/src/Communicate/Communicate.cpp index e0fbfdf63..78bf9bb82 100644 --- a/src/Communicate/Communicate.cpp +++ b/src/Communicate/Communicate.cpp @@ -1,6 +1,5 @@ // // Class Communicate -// Communicator class using Boost.MPI // // Copyright (c) 2020, Matthias Frey, Paul Scherrer Institut, Villigen PSI, Switzerland // All rights reserved diff --git a/test/FFT/CMakeLists.txt b/test/FFT/CMakeLists.txt index 6305139dd..5d0332166 100644 --- a/test/FFT/CMakeLists.txt +++ b/test/FFT/CMakeLists.txt @@ -7,7 +7,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( TestFFTCC ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestFFTRC TestFFTRC.cpp) @@ -27,7 +25,6 @@ target_link_libraries ( TestFFTRC ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestSine TestSine.cpp) @@ -35,14 +32,12 @@ target_link_libraries ( TestSine ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestCos TestCos.cpp) target_link_libraries ( TestCos ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: diff --git a/test/field/CMakeLists.txt b/test/field/CMakeLists.txt index ddf968896..5f3e1c354 100644 --- a/test/field/CMakeLists.txt +++ b/test/field/CMakeLists.txt @@ -7,7 +7,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( TestLaplace ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestFieldBC TestFieldBC.cpp) @@ -27,7 +25,6 @@ target_link_libraries ( TestFieldBC ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestHalo TestHalo.cpp) @@ -35,7 +32,6 @@ target_link_libraries ( TestHalo ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: diff --git a/test/kokkos/CMakeLists.txt b/test/kokkos/CMakeLists.txt index 649a3e687..d5c7645b5 100644 --- a/test/kokkos/CMakeLists.txt +++ b/test/kokkos/CMakeLists.txt @@ -7,7 +7,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( TestVectorField ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestVectorField2 TestVectorField2.cpp) @@ -27,7 +25,6 @@ target_link_libraries ( TestVectorField2 ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestVectorField3 TestVectorField3.cpp) @@ -35,7 +32,6 @@ target_link_libraries ( TestVectorField3 ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestVectorField4 TestVectorField4.cpp) @@ -43,7 +39,6 @@ target_link_libraries ( TestVectorField4 ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: @@ -53,4 +48,4 @@ target_link_libraries ( # cmake-tab-width: 4 # indent-tabs-mode: nil # require-final-newline: nil -# End: \ No newline at end of file +# End: diff --git a/test/particle/CMakeLists.txt b/test/particle/CMakeLists.txt index 18f9f7e9f..b56c63ce1 100644 --- a/test/particle/CMakeLists.txt +++ b/test/particle/CMakeLists.txt @@ -7,11 +7,10 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) -set (IPPL_LIBS ippl ${MPI_CXX_LIBRARIES} ${Boost_LIBRARIES}) +set (IPPL_LIBS ippl ${MPI_CXX_LIBRARIES}) set (COMPILE_FLAGS ${OPAL_CXX_FLAGS}) add_executable (TestScatter TestScatter.cpp) diff --git a/test/region/CMakeLists.txt b/test/region/CMakeLists.txt index b51aa4fec..80f98792a 100644 --- a/test/region/CMakeLists.txt +++ b/test/region/CMakeLists.txt @@ -7,7 +7,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( TestPRegion ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestNDRegion TestNDRegion.cpp) @@ -27,14 +25,13 @@ target_link_libraries ( TestNDRegion ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) -# vi: set et ts=4 sw=4 sts=4: -# Local Variables: -# mode: cmake -# cmake-tab-width: 4 -# indent-tabs-mode: nil -# require-final-newline: nil +# vi: set et ts=4 sw=4 sts=4: +# Local Variables: +# mode: cmake +# cmake-tab-width: 4 +# indent-tabs-mode: nil +# require-final-newline: nil # End: diff --git a/test/region/TestNDRegion.cpp b/test/region/TestNDRegion.cpp index 8dcc0215a..2e0c14a51 100644 --- a/test/region/TestNDRegion.cpp +++ b/test/region/TestNDRegion.cpp @@ -1,9 +1,5 @@ #include "Ippl.h" -#include - -#include - int main(int argc, char *argv[]) { Ippl ippl(argc,argv); @@ -17,15 +13,10 @@ int main(int argc, char *argv[]) { Kokkos::parallel_for("", 1000, KOKKOS_LAMBDA(const int i) { - + }); */ std::cout << nd << std::endl; - // const char* name = typeid(a * x * y * a).name(); - - //std::cout << z << std::endl; - //std::cout << boost::core::demangle( name ) << std::endl; - return 0; } diff --git a/test/region/TestPRegion.cpp b/test/region/TestPRegion.cpp index e6130edce..d51045d9c 100644 --- a/test/region/TestPRegion.cpp +++ b/test/region/TestPRegion.cpp @@ -2,8 +2,6 @@ #include -#include - int main(int argc, char *argv[]) { Ippl ippl(argc,argv); @@ -19,10 +17,5 @@ int main(int argc, char *argv[]) { region += 1.0; }); - // const char* name = typeid(a * x * y * a).name(); - - //std::cout << z << std::endl; - //std::cout << boost::core::demangle( name ) << std::endl; - return 0; } diff --git a/test/serialization/CMakeLists.txt b/test/serialization/CMakeLists.txt index bb628d680..687c44e1f 100644 --- a/test/serialization/CMakeLists.txt +++ b/test/serialization/CMakeLists.txt @@ -7,7 +7,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( serialize01 ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - boost_timer ) @@ -30,4 +28,4 @@ target_link_libraries ( # cmake-tab-width: 4 # indent-tabs-mode: nil # require-final-newline: nil -# End: \ No newline at end of file +# End: diff --git a/test/vector/CMakeLists.txt b/test/vector/CMakeLists.txt index e946f65ae..10add4886 100644 --- a/test/vector/CMakeLists.txt +++ b/test/vector/CMakeLists.txt @@ -7,7 +7,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( TestVector ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestVector2 TestVector2.cpp) @@ -27,7 +25,6 @@ target_link_libraries ( TestVector2 ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (TestVector3 TestVector3.cpp) @@ -35,7 +32,6 @@ target_link_libraries ( TestVector3 ${IPPL_LIBS} ${MPI_CXX_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: @@ -45,4 +41,4 @@ target_link_libraries ( # cmake-tab-width: 4 # indent-tabs-mode: nil # require-final-newline: nil -# End: \ No newline at end of file +# End: diff --git a/test/vector/TestVector.cpp b/test/vector/TestVector.cpp index cb4c69820..0efc46ad9 100644 --- a/test/vector/TestVector.cpp +++ b/test/vector/TestVector.cpp @@ -2,8 +2,6 @@ #include -#include - int main(int argc, char *argv[]) { Ippl ippl(argc,argv); @@ -21,7 +19,6 @@ int main(int argc, char *argv[]) { const char* name = typeid(a * x * y * a).name(); std::cout << z << std::endl; - std::cout << boost::core::demangle( name ) << std::endl; return 0; } diff --git a/test/vector/TestVector2.cpp b/test/vector/TestVector2.cpp index 81401f00f..fc0bdec61 100644 --- a/test/vector/TestVector2.cpp +++ b/test/vector/TestVector2.cpp @@ -5,8 +5,6 @@ #include -#include - #include @@ -104,9 +102,6 @@ int main() { vector_type x(1.0), y(2.0), z(0.0); - const char* name = typeid(x + y + x + x).name(); - std::cout << boost::core::demangle( name ) << std::endl; - auto start = std::chrono::high_resolution_clock::now(); z = x + y + x + x; diff --git a/test/vector/TestVector3.cpp b/test/vector/TestVector3.cpp index 889029c36..fc44e16c7 100644 --- a/test/vector/TestVector3.cpp +++ b/test/vector/TestVector3.cpp @@ -5,8 +5,6 @@ #include -#include - #include @@ -105,9 +103,6 @@ int main() { vector_type x(1.0), y(2.0), z(0.0); - const char* name = typeid(x + y + x + x).name(); - std::cout << boost::core::demangle( name ) << std::endl; - auto start = std::chrono::high_resolution_clock::now(); z = x + y + x + x; diff --git a/unit_tests/BareField/CMakeLists.txt b/unit_tests/BareField/CMakeLists.txt index ba8d52104..8233164c5 100644 --- a/unit_tests/BareField/CMakeLists.txt +++ b/unit_tests/BareField/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${GTEST_LIBRARY_DIRS} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -20,7 +19,6 @@ target_link_libraries ( pthread ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: diff --git a/unit_tests/Field/CMakeLists.txt b/unit_tests/Field/CMakeLists.txt index 695388be1..924352650 100644 --- a/unit_tests/Field/CMakeLists.txt +++ b/unit_tests/Field/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${GTEST_LIBRARY_DIRS} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -20,7 +19,6 @@ target_link_libraries ( pthread ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (FieldBC FieldBC.cpp) @@ -30,7 +28,6 @@ target_link_libraries ( pthread ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: diff --git a/unit_tests/Meshes/CMakeLists.txt b/unit_tests/Meshes/CMakeLists.txt index ebd768ae1..8544fec02 100644 --- a/unit_tests/Meshes/CMakeLists.txt +++ b/unit_tests/Meshes/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${GTEST_LIBRARY_DIRS} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,5 +18,4 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) diff --git a/unit_tests/PIC/CMakeLists.txt b/unit_tests/PIC/CMakeLists.txt index 6bd03012d..8735c3f10 100644 --- a/unit_tests/PIC/CMakeLists.txt +++ b/unit_tests/PIC/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${GTEST_LIBRARY_DIRS} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (ORB ORB.cpp) @@ -28,7 +26,6 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: diff --git a/unit_tests/Particle/CMakeLists.txt b/unit_tests/Particle/CMakeLists.txt index 39887f953..9c55cc56f 100644 --- a/unit_tests/Particle/CMakeLists.txt +++ b/unit_tests/Particle/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${GTEST_LIBRARY_DIRS} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (ParticleBC ParticleBC.cpp) @@ -28,7 +26,6 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) add_executable (ParticleSendRecv ParticleSendRecv.cpp) @@ -37,7 +34,6 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: diff --git a/unit_tests/Utility/CMakeLists.txt b/unit_tests/Utility/CMakeLists.txt index 02772f61d..84e2701ff 100644 --- a/unit_tests/Utility/CMakeLists.txt +++ b/unit_tests/Utility/CMakeLists.txt @@ -9,7 +9,6 @@ include_directories ( link_directories ( ${CMAKE_CURRENT_SOURCE_DIR} ${GTEST_LIBRARY_DIRS} - ${Boost_LIBRARY_DIRS} ${Kokkos_DIR}/.. ) @@ -19,7 +18,6 @@ target_link_libraries ( ippl ${MPI_CXX_LIBRARIES} ${GTEST_BOTH_LIBRARIES} - ${Boost_LIBRARIES} ) # vi: set et ts=4 sw=4 sts=4: