From cbdf9b3dcf1baa19e7725e3427194f249b902d4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Constantin=20F=C3=BCrst?= Date: Sun, 26 Nov 2023 18:21:43 +0100 Subject: [PATCH] rename execute_move to execute_dml_memcpy and rename the file that contains this function to benchmark-dml-memcpy.hpp --- .../{execute-move.hpp => benchmark-dml-memcpy.hpp} | 0 benchmarks/main.cpp | 10 +++++----- 2 files changed, 5 insertions(+), 5 deletions(-) rename benchmarks/{execute-move.hpp => benchmark-dml-memcpy.hpp} (100%) diff --git a/benchmarks/execute-move.hpp b/benchmarks/benchmark-dml-memcpy.hpp similarity index 100% rename from benchmarks/execute-move.hpp rename to benchmarks/benchmark-dml-memcpy.hpp diff --git a/benchmarks/main.cpp b/benchmarks/main.cpp index 1b1ea63..4bd0c99 100644 --- a/benchmarks/main.cpp +++ b/benchmarks/main.cpp @@ -5,7 +5,7 @@ #include #include "logging-helper.hpp" -#include "execute-move.hpp" +#include "benchmark-dml-mempcy.hpp" int main(int argc, char **argv) { if (argc < 3) { @@ -25,13 +25,13 @@ int main(int argc, char **argv) { is.close(); if (path == "hw") { - execute_mem_move(args); + execute_dml_memcpy(args); } else if (path == "sw") { - execute_mem_move(args); + execute_dml_memcpy(args); } else if (path == "auto") { - execute_mem_move(args); + execute_dml_memcpy(args); } else { std::cerr << "Path is neither hw/sw/auto." << std::endl; @@ -40,4 +40,4 @@ int main(int argc, char **argv) { std::ofstream os(output); WriteResultLog(args, path, os); os.close(); -} \ No newline at end of file +}