Skip to content

Commit

Permalink
Rename per review
Browse files Browse the repository at this point in the history
  • Loading branch information
aprokop committed May 3, 2024
1 parent 4f0a86b commit 9042e41
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ namespace bpo = boost::program_options;
template <class NO>
int main_(std::vector<std::string> const &args, MPI_Comm const comm)
{
Benchmarks::TimeMonitor time_monitor;
ArborXBenchmark::TimeMonitor time_monitor;

using DeviceType = typename NO::device_type;
using ExecutionSpace = typename DeviceType::execution_space;
Expand Down
8 changes: 4 additions & 4 deletions benchmarks/utils/time_monitor.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@
* *
* SPDX-License-Identifier: BSD-3-Clause *
****************************************************************************/
#ifndef ARBORX_TIME_MONITOR
#define ARBORX_TIME_MONITOR
#ifndef ARBORX_BENCHMARK_TIME_MONITOR
#define ARBORX_BENCHMARK_TIME_MONITOR

#include <algorithm> // min_element, max_element
#include <cassert>
Expand All @@ -25,7 +25,7 @@

#include <mpi.h>

namespace Benchmarks
namespace ArborXBenchmark
{

// The TimeMonitor class can be used to measure for a series of events, i.e. it
Expand Down Expand Up @@ -166,6 +166,6 @@ class TimeMonitor
}
};

} // namespace Benchmarks
} // namespace ArborXBenchmark

#endif

0 comments on commit 9042e41

Please sign in to comment.