Skip to content

Commit

Permalink
Fix query file names
Browse files Browse the repository at this point in the history
  • Loading branch information
JayjeetAtGithub committed Sep 10, 2024
1 parent 341d565 commit f6eb995
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions cpp/benchmarks/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)

# ##################################################################################################
Expand Down
2 changes: 1 addition & 1 deletion cpp/benchmarks/ndsh/q1.cpp → cpp/benchmarks/ndsh/q01.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <nvbench/nvbench.cuh>

/**
* @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';
Expand Down
2 changes: 1 addition & 1 deletion cpp/benchmarks/ndsh/q5.cpp → cpp/benchmarks/ndsh/q05.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include <nvbench/nvbench.cuh>

/**
* @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';
Expand Down
2 changes: 1 addition & 1 deletion cpp/benchmarks/ndsh/q6.cpp → cpp/benchmarks/ndsh/q06.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
#include <nvbench/nvbench.cuh>

/**
* @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';
Expand Down
2 changes: 1 addition & 1 deletion cpp/benchmarks/ndsh/q9.cpp → cpp/benchmarks/ndsh/q09.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
#include <nvbench/nvbench.cuh>

/**
* @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';
Expand Down

0 comments on commit f6eb995

Please sign in to comment.