From 825841a9f91be06bd80fc55ee741737c8a5b108a Mon Sep 17 00:00:00 2001 From: "James D. Mitchell" Date: Wed, 1 Nov 2023 16:07:13 +0000 Subject: [PATCH] Move old benchmark stuff into experiments --- benchmark/CMakeLists.txt | 2 +- {benchmark => experiments}/compilerinfo.hpp | 0 {benchmark => experiments}/cpu_x86.h | 0 {benchmark => experiments}/cpu_x86_Linux.ipp | 0 {benchmark => experiments}/cpu_x86_Windows.ipp | 0 {benchmark => experiments}/cpu_x86_impl.hpp | 0 {benchmark => experiments}/cycle.cpp | 0 {benchmark => experiments}/inverse.cpp | 0 {benchmark => experiments}/length.cpp | 0 {benchmark => experiments}/python/compare.py | 0 {benchmark => experiments}/python/compare_bench.py | 0 {benchmark => experiments}/python/gbench/__init__.py | 0 {benchmark => experiments}/python/gbench/report.py | 0 {benchmark => experiments}/python/gbench/util.py | 0 {benchmark => experiments}/sort.cpp | 0 {benchmark => experiments}/sum.cpp | 0 {benchmark => experiments}/testtools.hpp | 0 17 files changed, 1 insertion(+), 1 deletion(-) rename {benchmark => experiments}/compilerinfo.hpp (100%) rename {benchmark => experiments}/cpu_x86.h (100%) rename {benchmark => experiments}/cpu_x86_Linux.ipp (100%) rename {benchmark => experiments}/cpu_x86_Windows.ipp (100%) rename {benchmark => experiments}/cpu_x86_impl.hpp (100%) rename {benchmark => experiments}/cycle.cpp (100%) rename {benchmark => experiments}/inverse.cpp (100%) rename {benchmark => experiments}/length.cpp (100%) rename {benchmark => experiments}/python/compare.py (100%) rename {benchmark => experiments}/python/compare_bench.py (100%) rename {benchmark => experiments}/python/gbench/__init__.py (100%) rename {benchmark => experiments}/python/gbench/report.py (100%) rename {benchmark => experiments}/python/gbench/util.py (100%) rename {benchmark => experiments}/sort.cpp (100%) rename {benchmark => experiments}/sum.cpp (100%) rename {benchmark => experiments}/testtools.hpp (100%) diff --git a/benchmark/CMakeLists.txt b/benchmark/CMakeLists.txt index 66227de2..1f52983f 100644 --- a/benchmark/CMakeLists.txt +++ b/benchmark/CMakeLists.txt @@ -33,7 +33,7 @@ endif() message(STATUS "Building benchmark") set(benchmark_src - bench_epu8.cpp bench_perm16.cpp bench_bmat8.cpp sort.cpp inverse.cpp) + bench_epu8.cpp bench_perm16.cpp bench_bmat8.cpp) foreach(f ${benchmark_src}) get_filename_component(benchName ${f} NAME_WE) diff --git a/benchmark/compilerinfo.hpp b/experiments/compilerinfo.hpp similarity index 100% rename from benchmark/compilerinfo.hpp rename to experiments/compilerinfo.hpp diff --git a/benchmark/cpu_x86.h b/experiments/cpu_x86.h similarity index 100% rename from benchmark/cpu_x86.h rename to experiments/cpu_x86.h diff --git a/benchmark/cpu_x86_Linux.ipp b/experiments/cpu_x86_Linux.ipp similarity index 100% rename from benchmark/cpu_x86_Linux.ipp rename to experiments/cpu_x86_Linux.ipp diff --git a/benchmark/cpu_x86_Windows.ipp b/experiments/cpu_x86_Windows.ipp similarity index 100% rename from benchmark/cpu_x86_Windows.ipp rename to experiments/cpu_x86_Windows.ipp diff --git a/benchmark/cpu_x86_impl.hpp b/experiments/cpu_x86_impl.hpp similarity index 100% rename from benchmark/cpu_x86_impl.hpp rename to experiments/cpu_x86_impl.hpp diff --git a/benchmark/cycle.cpp b/experiments/cycle.cpp similarity index 100% rename from benchmark/cycle.cpp rename to experiments/cycle.cpp diff --git a/benchmark/inverse.cpp b/experiments/inverse.cpp similarity index 100% rename from benchmark/inverse.cpp rename to experiments/inverse.cpp diff --git a/benchmark/length.cpp b/experiments/length.cpp similarity index 100% rename from benchmark/length.cpp rename to experiments/length.cpp diff --git a/benchmark/python/compare.py b/experiments/python/compare.py similarity index 100% rename from benchmark/python/compare.py rename to experiments/python/compare.py diff --git a/benchmark/python/compare_bench.py b/experiments/python/compare_bench.py similarity index 100% rename from benchmark/python/compare_bench.py rename to experiments/python/compare_bench.py diff --git a/benchmark/python/gbench/__init__.py b/experiments/python/gbench/__init__.py similarity index 100% rename from benchmark/python/gbench/__init__.py rename to experiments/python/gbench/__init__.py diff --git a/benchmark/python/gbench/report.py b/experiments/python/gbench/report.py similarity index 100% rename from benchmark/python/gbench/report.py rename to experiments/python/gbench/report.py diff --git a/benchmark/python/gbench/util.py b/experiments/python/gbench/util.py similarity index 100% rename from benchmark/python/gbench/util.py rename to experiments/python/gbench/util.py diff --git a/benchmark/sort.cpp b/experiments/sort.cpp similarity index 100% rename from benchmark/sort.cpp rename to experiments/sort.cpp diff --git a/benchmark/sum.cpp b/experiments/sum.cpp similarity index 100% rename from benchmark/sum.cpp rename to experiments/sum.cpp diff --git a/benchmark/testtools.hpp b/experiments/testtools.hpp similarity index 100% rename from benchmark/testtools.hpp rename to experiments/testtools.hpp