Skip to content

Commit

Permalink
f
Browse files Browse the repository at this point in the history
  • Loading branch information
ewarchul committed Nov 10, 2024
1 parent a6de00a commit 89e6ab9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 9 deletions.
11 changes: 4 additions & 7 deletions .clang-format
Original file line number Diff line number Diff line change
@@ -1,7 +1,4 @@
Language: Cpp
ColumnLimit: 80
BasedOnStyle: LLVM
IndentPPDirectives: AfterHash
IndentCaseLabels: false
AlwaysBreakTemplateDeclarations: false
DerivePointerAlignment: false
Language: Cpp
Standard: Cpp11
BasedOnStyle: Google
ColumnLimit: 100
2 changes: 1 addition & 1 deletion example/runner/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ add_compile_definitions(DATA_STORAGE_PATH="${CMAKE_SOURCE_DIR}/data")
add_executable(runner_example main.cpp)
target_link_libraries(runner_example PRIVATE cecxx concurrencpp::concurrencpp)
set_target_properties(runner_example PROPERTIES CXX_STANDARD 23)
target_compile_options(runner_example PRIVATE -Wall -Wextra -Wpedantic -O3)
target_compile_options(runner_example PRIVATE -g -Wall -Wextra -Wpedantic -O0)

3 changes: 2 additions & 1 deletion include/cecxx/benchmark/runner.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ struct runner {
const auto tasks = create_benchmark_tasks(options_);
auto trial_results = std::vector<result<trial_result>>{};
spdlog::info(
"Running benchmark with the following settings: edition [{}], thread pool size [{}], dimensions {}, trial number per "
"Running benchmark with the following settings: edition [{}], thread pool size [{}], "
"dimensions {}, trial number per "
"problem [{}].",
to_string(options_.edition), tpe_->max_concurrency_level(), options_.dimensions,
options_.max_trials_num);
Expand Down

0 comments on commit 89e6ab9

Please sign in to comment.