From f6eb995fca084930ca7b868d1ddfb184343a33e1 Mon Sep 17 00:00:00 2001 From: JayjeetAtGithub Date: Tue, 10 Sep 2024 11:24:17 -0700 Subject: [PATCH] Fix query file names --- cpp/benchmarks/CMakeLists.txt | 8 ++++---- cpp/benchmarks/ndsh/{q1.cpp => q01.cpp} | 2 +- cpp/benchmarks/ndsh/{q5.cpp => q05.cpp} | 2 +- cpp/benchmarks/ndsh/{q6.cpp => q06.cpp} | 2 +- cpp/benchmarks/ndsh/{q9.cpp => q09.cpp} | 2 +- 5 files changed, 8 insertions(+), 8 deletions(-) rename cpp/benchmarks/ndsh/{q1.cpp => q01.cpp} (99%) rename cpp/benchmarks/ndsh/{q5.cpp => q05.cpp} (99%) rename cpp/benchmarks/ndsh/{q6.cpp => q06.cpp} (99%) rename cpp/benchmarks/ndsh/{q9.cpp => q09.cpp} (99%) diff --git a/cpp/benchmarks/CMakeLists.txt b/cpp/benchmarks/CMakeLists.txt index fc4b8f37549..3bf9d02b384 100644 --- a/cpp/benchmarks/CMakeLists.txt +++ b/cpp/benchmarks/CMakeLists.txt @@ -177,10 +177,10 @@ ConfigureBench(TRANSPOSE_BENCH transpose/transpose.cpp) # ################################################################################################## # * nds-h benchmark -------------------------------------------------------------------------------- -ConfigureNVBench(NDSH_Q1 ndsh/q1.cpp ndsh/utilities.cpp) -ConfigureNVBench(NDSH_Q5 ndsh/q5.cpp ndsh/utilities.cpp) -ConfigureNVBench(NDSH_Q6 ndsh/q6.cpp ndsh/utilities.cpp) -ConfigureNVBench(NDSH_Q9 ndsh/q9.cpp ndsh/utilities.cpp) +ConfigureNVBench(NDSH_Q1 ndsh/q01.cpp ndsh/utilities.cpp) +ConfigureNVBench(NDSH_Q5 ndsh/q05.cpp ndsh/utilities.cpp) +ConfigureNVBench(NDSH_Q6 ndsh/q06.cpp ndsh/utilities.cpp) +ConfigureNVBench(NDSH_Q9 ndsh/q09.cpp ndsh/utilities.cpp) ConfigureNVBench(NDSH_Q10 ndsh/q10.cpp ndsh/utilities.cpp) # ################################################################################################## diff --git a/cpp/benchmarks/ndsh/q1.cpp b/cpp/benchmarks/ndsh/q01.cpp similarity index 99% rename from cpp/benchmarks/ndsh/q1.cpp rename to cpp/benchmarks/ndsh/q01.cpp index b648c050a69..c5125408c87 100644 --- a/cpp/benchmarks/ndsh/q1.cpp +++ b/cpp/benchmarks/ndsh/q01.cpp @@ -24,7 +24,7 @@ #include /** - * @file q1.cpp + * @file q01.cpp * @brief Implement query 1 of the NDS-H benchmark. * * create view lineitem as select * from '/tables/scale-1/lineitem.parquet'; diff --git a/cpp/benchmarks/ndsh/q5.cpp b/cpp/benchmarks/ndsh/q05.cpp similarity index 99% rename from cpp/benchmarks/ndsh/q5.cpp rename to cpp/benchmarks/ndsh/q05.cpp index 3533e848a06..62a28b660e4 100644 --- a/cpp/benchmarks/ndsh/q5.cpp +++ b/cpp/benchmarks/ndsh/q05.cpp @@ -24,7 +24,7 @@ #include /** - * @file q5.cpp + * @file q05.cpp * @brief Implement query 5 of the NDS-H benchmark. * * create view customer as select * from '/tables/scale-1/customer.parquet'; diff --git a/cpp/benchmarks/ndsh/q6.cpp b/cpp/benchmarks/ndsh/q06.cpp similarity index 99% rename from cpp/benchmarks/ndsh/q6.cpp rename to cpp/benchmarks/ndsh/q06.cpp index a26fe8e71fe..7ebd69c4be2 100644 --- a/cpp/benchmarks/ndsh/q6.cpp +++ b/cpp/benchmarks/ndsh/q06.cpp @@ -25,7 +25,7 @@ #include /** - * @file q6.cpp + * @file q06.cpp * @brief Implement query 6 of the NDS-H benchmark. * * create view lineitem as select * from '/tables/scale-1/lineitem.parquet'; diff --git a/cpp/benchmarks/ndsh/q9.cpp b/cpp/benchmarks/ndsh/q09.cpp similarity index 99% rename from cpp/benchmarks/ndsh/q9.cpp rename to cpp/benchmarks/ndsh/q09.cpp index 59daa4bbfa9..f219d303678 100644 --- a/cpp/benchmarks/ndsh/q9.cpp +++ b/cpp/benchmarks/ndsh/q09.cpp @@ -26,7 +26,7 @@ #include /** - * @file q9.cpp + * @file q09.cpp * @brief Implement query 9 of the NDS-H benchmark. * * create view part as select * from '/tables/scale-1/part.parquet';