Skip to content

Commit

Permalink
Fix namespace name
Browse files Browse the repository at this point in the history
  • Loading branch information
sbaldu committed Oct 28, 2024
1 parent f65664e commit fcbcee4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions benchmark/dataset_size/main.cc
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ namespace ALPAKA_ACCELERATOR_NAMESPACE {
}
}; // namespace ALPAKA_ACCELERATOR_NAMESPACE

namespace clue = ALPAKA_ACCELERATOR_NAMESPACE;
namespace cluetest = ALPAKA_ACCELERATOR_NAMESPACE;

int main(int argc, char* argv[]) {
auto min = std::stoi(argv[1]);
Expand Down Expand Up @@ -135,7 +135,7 @@ int main(int argc, char* argv[]) {
std::vector<float> times(nruns);
for (auto i = 0; i < nruns; ++i) {
start = std::chrono::high_resolution_clock::now();
clue::run(file);
cluetest::run(file);
end = std::chrono::high_resolution_clock::now();
auto duration =
std::chrono::duration_cast<std::chrono::milliseconds>(end - start).count();
Expand Down

0 comments on commit fcbcee4

Please sign in to comment.