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 +}