Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Standardising Benchmarks, with support for nanobench as an option for its backend #6448

Open
wants to merge 24 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from 23 commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
5167e12
Add initial nanobench benchmark config
vrnimje Feb 16, 2024
16e42ea
Pyperf integration for testing puporses
vrnimje Feb 21, 2024
3d38818
Added interface for nanbench backend, and tested interface with minma…
vrnimje Feb 25, 2024
35a3f1d
Added workflows to test out benchmarks
vrnimje Feb 26, 2024
59363bd
Modified CI to build and test minmax benchmark only
vrnimje Feb 26, 2024
506e240
Added separate CI for benchmark without nanobench
vrnimje Feb 26, 2024
cbee8b1
Changing new CI name
vrnimje Feb 26, 2024
2979001
Correcting CI names
vrnimje Feb 26, 2024
4683bea
Changing CI activations to PR only
vrnimje Feb 27, 2024
1f2ae1c
Adding back namespace defs and add_library call for nanobench
vrnimje Mar 7, 2024
ee41a79
Clean up minmax test
vrnimje Mar 16, 2024
4bb7d3d
Adding command line argument for detailed bench output
vrnimje Mar 16, 2024
77fa197
Fixing CI format
vrnimje Mar 16, 2024
2e6258a
Adding initial benchmark visualisation script
vrnimje Mar 17, 2024
794de41
Added benchmark output specialisations for normal case as well
vrnimje Mar 27, 2024
af5726b
Standardised modules.datastructures.small_vector_benchmark, and made …
vrnimje Mar 28, 2024
14374ed
Updated cmdline switching to local config, and refactored benchmarks …
vrnimje Apr 11, 2024
21fc400
Removing definition of inline variable, and modified CIs to use the c…
vrnimje Apr 12, 2024
1d18a5c
Applying cmake-format and clang-format
vrnimje Apr 19, 2024
995ae0e
Adding explicit double to long double conversions for the default case
vrnimje Apr 22, 2024
cc25fb1
Fixed implicit conversion issue while using add_time function
vrnimje Apr 22, 2024
33ea494
Standardised foreach_report, stream_report and future_overhead_report…
vrnimje Jun 10, 2024
526e048
Fixing clang-format for performance.cpp and future_overhead_report
vrnimje Jul 3, 2024
c35e4e4
Removed perftests_plot.py, and made minor clean-up changes
vrnimje Jul 14, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 46 additions & 0 deletions .github/workflows/linux_with_bench_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
# Copyright (c) 2024 Vedant Nimje
#
# SPDX-License-Identifier: BSL-1.0
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

name: Linux CI (Debug) with Benchmark Test

on: [pull_request]


jobs:
build:
runs-on: ubuntu-latest
container: stellargroup/build_env:14

steps:
- uses: actions/checkout@v4
- name: Configure
shell: bash
run: |
cmake \
. \
-Bbuild \
-GNinja \
-DCMAKE_BUILD_TYPE=Debug \
-DHPX_WITH_MALLOC=system \
-DHPX_WITH_FETCH_ASIO=ON \
-DHPX_WITH_EXAMPLES=ON \
-DHPX_WITH_TESTS=ON \
-DHPX_WITH_TESTS_MAX_THREADS_PER_LOCALITY=2 \
-DHPX_WITH_CHECK_MODULE_DEPENDENCIES=On
- name: Build
shell: bash
run: |
cmake --build build/ --target tests.performance.modules.segmented_algorithms.minmax_element_performance
- name: Test
shell: bash
run: |
cd build
./bin/minmax_element_performance_test
- name: Test with detailed output
shell: bash
run: |
cd build
./bin/minmax_element_performance_test --detailed_bench
48 changes: 48 additions & 0 deletions .github/workflows/linux_with_nanobench_test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
# Copyright (c) 2024 Vedant Nimje
#
# SPDX-License-Identifier: BSL-1.0
# Distributed under the Boost Software License, Version 1.0. (See accompanying
# file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)

name: Linux CI (Debug) with Nanobench Benchmark Test

on: [pull_request]


jobs:
build:
runs-on: ubuntu-latest
container: stellargroup/build_env:14

steps:
- uses: actions/checkout@v4
- name: Configure
shell: bash
run: |
cmake \
. \
-Bbuild \
-GNinja \
-DCMAKE_BUILD_TYPE=Debug \
-DHPX_WITH_MALLOC=system \
-DHPX_WITH_FETCH_ASIO=ON \
-DHPX_WITH_EXAMPLES=ON \
-DHPX_WITH_TESTS=ON \
-DHPX_WITH_NANOBENCH=ON \
-DHPX_WITH_TESTS_MAX_THREADS_PER_LOCALITY=2 \
-DHPX_WITH_CHECK_MODULE_DEPENDENCIES=On
- name: Build
shell: bash
run: |
cmake --build build/ --target tests.performance.modules.segmented_algorithms.minmax_element_performance
- name: Test
shell: bash
run: |
cd build
./bin/minmax_element_performance_test

- name: Test with detailed output
shell: bash
run: |
cd build
./bin/minmax_element_performance_test --detailed_bench
6 changes: 3 additions & 3 deletions .jenkins/lsu-perftests/launch_perftests.sh
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ hpx_targets=(
hpx_test_options=(
"--hpx:ini=hpx.thread_queue.init_threads_count=100 \
--hpx:threads=4 --vector_size=104857 --work_delay=1 \
--chunk_size=0 --test_count=200"
--chunk_size=0 --test_count=200 --detailed_bench"
"--hpx:ini=hpx.thread_queue.init_threads_count=100 \
--hpx:queuing=local-priority --hpx:threads=4 --test-all \
--repetitions=40 --futures=207270"
--repetitions=40 --futures=207270 --detailed_bench"
"--hpx:ini=hpx.thread_queue.init_threads_count=100 \
--vector_size=518176 --hpx:threads=4 --iterations=200 \
--warmup_iterations=20")
--warmup_iterations=20 --detailed_bench")

# Build binaries for performance tests
${perftests_dir}/driver.py -v -l $logfile build -b release -o build \
Expand Down
17 changes: 17 additions & 0 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -1027,6 +1027,15 @@ hpx_option(
ADVANCED
)

hpx_option(
HPX_WITH_NANOBENCH
BOOL
"Use Nanobench for performance tests. Nanobench will be fetched using FetchContent (defualt: OFF)"
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

typo :)

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Fixed in c35e4e4

OFF
CATEGORY "Build Targets"
ADVANCED
)

# cmake-format: off
# LibCDS option
# NOTE: The libcds option is disabled for the 1.5.0 release as it is not ready
Expand Down Expand Up @@ -1263,6 +1272,10 @@ if(HPX_WITH_NETWORKING)
if(HPX_WITH_PARCELPORT_ACTION_COUNTERS)
hpx_add_config_define(HPX_HAVE_PARCELPORT_ACTION_COUNTERS)
endif()
if(HPX_WITH_NANOBENCH)
hpx_add_config_define(HPX_HAVE_NANOBENCH)
include(HPX_SetupNanobench)
endif()
else(HPX_WITH_NETWORKING)
# if networking is off, then allow the option of using our asynchronous MPI
# features
Expand Down Expand Up @@ -2550,6 +2563,10 @@ if(HPX_WITH_PRECOMPILED_HEADERS)
<boost/spirit/home/x3.hpp>
)

if(HPX_WITH_NANOBENCH)
set(system_precompiled_headers ${system_precompiled_headers} <nanobench.h>)
endif()

if(HPX_WITH_CXX17_FILESYSTEM)
list(APPEND system_precompiled_headers <filesystem>)
endif()
Expand Down
47 changes: 47 additions & 0 deletions cmake/HPX_SetupNanobench.cmake
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
include(FetchContent)

fetchcontent_declare(
nanobench
GIT_REPOSITORY https://github.com/martinus/nanobench.git
GIT_TAG v4.3.11
GIT_SHALLOW TRUE
)

if(NOT nanobench_POPULATED)
fetchcontent_populate(nanobench)
endif()
set(Nanobench_ROOT ${nanobench_SOURCE_DIR})

add_library(nanobench INTERFACE)
target_include_directories(
nanobench SYSTEM INTERFACE $<BUILD_INTERFACE:${Nanobench_ROOT}/src/include/>
$<INSTALL_INTERFACE:${CMAKE_INSTALL_INCLUDEDIR}>
)

install(
TARGETS nanobench
EXPORT HPXNanobenchTarget
COMPONENT core
)

install(
FILES ${NANOBENCH_ROOT}/include/nanobench.h
DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}
COMPONENT core
)

export(
TARGETS nanobench
NAMESPACE nanobench::
FILE "${CMAKE_CURRENT_BINARY_DIR}/lib/cmake/${HPX_PACKAGE_NAME}/HPXNanobenchTarget.cmake"
)

install(
EXPORT HPXNanobenchTarget
NAMESPACE nanobench::
FILE HPXNanobenchTarget.cmake
DESTINATION ${CMAKE_INSTALL_LIBDIR}/cmake/${HPX_PACKAGE_NAME}
COMPONENT cmake
)

add_library(nanobench::nanobench ALIAS nanobench)
3 changes: 3 additions & 0 deletions libs/core/algorithms/tests/performance/foreach_report.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ int hpx_main(hpx::program_options::variables_map& vm)
disable_stealing = vm.count("disable_stealing");
fast_idle_mode = vm.count("fast_idle_mode");

hpx::util::perftests_init(vm);

// verify that input is within domain of program
if (test_count == 0 || test_count < 0)
{
Expand Down Expand Up @@ -122,6 +124,7 @@ int main(int argc, char* argv[])
;
// clang-format on

hpx::util::perftests_cfg(cmdline);
hpx::local::init_params init_args;
init_args.desc_cmdline = cmdline;
init_args.cfg = {"hpx.os_threads=all"};
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -614,6 +614,7 @@ namespace hpx::local::detail {
("hpx:debug-app-log", value<std::string>()->implicit_value("cout"),
"enable all messages on the application log channel and send all "
"application logs to the target destination")
// ("hpx:verbose_bench", "For logging benchmarks in detail")
;

all_options[options_type::hidden_options].add_options()
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
#include <hpx/datastructures/detail/small_vector.hpp>
#include <hpx/functional.hpp>
#include <hpx/init.hpp>
#include <hpx/modules/testing.hpp>

#include <cstddef>
#include <cstdint>
Expand All @@ -19,61 +20,85 @@

///////////////////////////////////////////////////////////////////////////////
template <typename Container>
std::uint64_t measure(std::size_t repeat, std::size_t size)
void fill(std::size_t size)
{
std::uint64_t start = hpx::chrono::high_resolution_clock::now();
for (std::size_t i = 0; i != repeat; ++i)
Container cont;
for (std::size_t i = 0; i != size; ++i)
{
Container cont;
for (std::size_t i = 0; i != size; ++i)
{
cont.push_back(typename Container::value_type{});
}
cont.push_back(typename Container::value_type{});
}
return (hpx::chrono::high_resolution_clock::now() - start) / repeat;
}

template <typename T, std::size_t N>
void compare(std::size_t repeat, std::size_t size)
{
std::uint64_t time = measure<hpx::detail::small_vector<T, N>>(repeat, size);
// template <typename T, std::size_t N>
// void compare(std::size_t repeat, std::size_t size)
// {
// std::uint64_t time = measure<hpx::detail::small_vector<T, N>>(repeat, size);

std::cout << "-----Average-(hpx::small_vector<" << typeid(T).name() << ", "
<< N << ">)------ \n"
<< std::left << "Average execution time : " << std::right
<< std::setw(8) << time / 1e9 << "\n";
}
// std::cout << "-----Average-(hpx::small_vector<" << typeid(T).name() << ", "
// << N << ">)------ \n"
// << std::left << "Average execution time : " << std::right
// << std::setw(8) << time / 1e9 << "\n";
// }
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can be removed

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Removed in c35e4e4


int hpx_main(hpx::program_options::variables_map& vm)
{
// pull values from cmd
std::size_t repeat = vm["test_count"].as<std::size_t>();
std::size_t size = vm["vector_size"].as<std::size_t>();

std::cout << std::left
<< "----------------Parameters---------------------\n"
<< std::left
<< "Vector size : " << std::right
<< std::setw(8) << size << "\n"
<< std::left
<< "Number of tests : " << std::right
<< std::setw(8) << repeat << "\n"
<< std::left
<< "Display time in : " << std::right
<< std::setw(8) << "Seconds\n"
<< std::flush;

compare<int, 1>(repeat, size);
compare<int, 2>(repeat, size);
compare<int, 4>(repeat, size);
compare<int, 8>(repeat, size);
compare<int, 16>(repeat, size);

compare<hpx::move_only_function<void()>, 1>(repeat, size);
compare<hpx::move_only_function<void()>, 2>(repeat, size);
compare<hpx::move_only_function<void()>, 4>(repeat, size);
compare<hpx::move_only_function<void()>, 8>(repeat, size);
compare<hpx::move_only_function<void()>, 16>(repeat, size);
hpx::util::perftests_init(vm);

// int

hpx::util::perftests_report("hpx::small_vector", "<int, 1>", repeat,
[&] { fill<hpx::detail::small_vector<int, 1>>(size); });

hpx::util::perftests_report("hpx::small_vector", "<int, 2>", repeat,
[&] { fill<hpx::detail::small_vector<int, 2>>(size); });

hpx::util::perftests_report("hpx::small_vector", "<int, 4>", repeat,
[&] { fill<hpx::detail::small_vector<int, 4>>(size); });

hpx::util::perftests_report("hpx::small_vector", "<int, 8>", repeat,
[&] { fill<hpx::detail::small_vector<int, 8>>(size); });

hpx::util::perftests_report("hpx::small_vector", "<int, 16>", repeat,
[&] { fill<hpx::detail::small_vector<int, 16>>(size); });

// hpx::move_only_function<void()>

hpx::util::perftests_report(
"hpx::small_vector", "<fxn<void()>, 1>", repeat, [&] {
fill<hpx::detail::small_vector<hpx::move_only_function<void()>, 1>>(
size);
});

hpx::util::perftests_report(
"hpx::small_vector", "<fxn<void()>, 2>", repeat, [&] {
fill<hpx::detail::small_vector<hpx::move_only_function<void()>, 2>>(
size);
});

hpx::util::perftests_report(
"hpx::small_vector", "<fxn<void()>, 4>", repeat, [&] {
fill<hpx::detail::small_vector<hpx::move_only_function<void()>, 4>>(
size);
});

hpx::util::perftests_report(
"hpx::small_vector", "<fxn<void()>, 8>", repeat, [&] {
fill<hpx::detail::small_vector<hpx::move_only_function<void()>, 8>>(
size);
});

hpx::util::perftests_report(
"hpx::small_vector", "<fxn<void()>, 16>", repeat, [&] {
fill<
hpx::detail::small_vector<hpx::move_only_function<void()>, 16>>(
size);
});

hpx::util::perftests_print_times();

return hpx::local::finalize();
}
Expand All @@ -97,6 +122,8 @@ int main(int argc, char* argv[])
;
// clang-format on

hpx::util::perftests_cfg(cmdline);

hpx::local::init_params init_args;
init_args.desc_cmdline = cmdline;
init_args.cfg = cfg;
Expand Down
17 changes: 15 additions & 2 deletions libs/core/testing/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -20,14 +20,27 @@ set(testing_compat_headers
# Default location is $HPX_ROOT/libs/testing/src
set(testing_sources testing.cpp performance.cpp)

set(module_deps
hpx_assertion
hpx_config
hpx_format
hpx_functional
hpx_preprocessor
hpx_util
hpx_command_line_handling_local
)

if(HPX_WITH_NANOBENCH)
set(module_deps ${module_deps} nanobench)
endif()

include(HPX_AddModule)
add_hpx_module(
core testing
GLOBAL_HEADER_GEN OFF
SOURCES ${testing_sources}
HEADERS ${testing_headers}
COMPAT_HEADERS ${testing_compat_headers}
MODULE_DEPENDENCIES hpx_assertion hpx_config hpx_format hpx_functional
hpx_preprocessor hpx_util
MODULE_DEPENDENCIES ${module_deps}
CMAKE_SUBDIRS examples tests
)
Loading
Loading