From 7dd33f81bfd87cc4f9664380680d16c372003887 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cezary=20Skrzy=C5=84ski?= Date: Tue, 15 Nov 2022 17:28:45 +0100 Subject: [PATCH] Remove ported benchmarks from Makefile --- core/perf_test/Makefile | 27 ++++----------------------- 1 file changed, 4 insertions(+), 23 deletions(-) diff --git a/core/perf_test/Makefile b/core/perf_test/Makefile index 396387c622..8d574a40b7 100644 --- a/core/perf_test/Makefile +++ b/core/perf_test/Makefile @@ -14,7 +14,7 @@ else CXX = g++ endif -CXXFLAGS = -O3 +CXXFLAGS = -O3 #CXXFLAGS += -DGENERIC_REDUCER LINK ?= $(CXX) LDFLAGS ?= @@ -29,43 +29,24 @@ TARGETS = # -OBJ_PERF = PerfTestMain.o gtest-all.o -OBJ_PERF += PerfTest_ExecSpacePartitioning.o -OBJ_PERF += PerfTestGramSchmidt.o -OBJ_PERF += PerfTestHexGrad.o -OBJ_PERF += PerfTest_CustomReduction.o -OBJ_PERF += PerfTest_ViewAllocate.o -OBJ_PERF += PerfTest_ViewFill_123.o PerfTest_ViewFill_45.o PerfTest_ViewFill_6.o PerfTest_ViewFill_7.o PerfTest_ViewFill_8.o -OBJ_PERF += PerfTest_ViewResize_123.o PerfTest_ViewResize_45.o PerfTest_ViewResize_6.o PerfTest_ViewResize_7.o PerfTest_ViewResize_8.o -TARGETS += KokkosCore_PerformanceTest -TEST_TARGETS += test-performance - -# - -OBJ_ATOMICS = test_atomic.o +OBJ_ATOMICS = test_atomic.o TARGETS += KokkosCore_PerformanceTest_Atomics TEST_TARGETS += test-atomic # -OBJ_MEMPOOL = test_mempool.o +OBJ_MEMPOOL = test_mempool.o TARGETS += KokkosCore_PerformanceTest_Mempool TEST_TARGETS += test-mempool # -OBJ_TASKDAG = test_taskdag.o +OBJ_TASKDAG = test_taskdag.o TARGETS += KokkosCore_PerformanceTest_TaskDAG TEST_TARGETS += test-taskdag # -OBJ_ATOMICS_MINMAX = test_atomic_minmax_simple.o -TARGETS += KokkosCore_PerformanceTest_Atomics_MinMax -TEST_TARGETS += test-atomic-minmax - -# - KokkosCore_PerformanceTest: $(OBJ_PERF) $(KOKKOS_LINK_DEPENDS) $(LINK) $(EXTRA_PATH) $(OBJ_PERF) $(KOKKOS_LIBS) $(LIB) $(KOKKOS_LDFLAGS) $(LDFLAGS) -o KokkosCore_PerformanceTest