Skip to content

Commit

Permalink
Removed escape characters from the CDash mustache template
Browse files Browse the repository at this point in the history
Signed-off-by: Vedant <vedantnimjed@gmail.com>
  • Loading branch information
vrnimje committed Aug 22, 2024
1 parent 17dfd82 commit f3620d7
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,49 +50,49 @@ int hpx_main(hpx::program_options::variables_map& vm)

// int

hpx::util::perftests_report("hpx::small_vector", "<int, 1>", repeat,
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,
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,
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,
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,
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, [&] {
"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, [&] {
"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, [&] {
"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, [&] {
"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, [&] {
"hpx::small_vector", "fxn:void(), 16", repeat, [&] {
fill<
hpx::detail::small_vector<hpx::move_only_function<void()>, 16>>(
size);
Expand Down
2 changes: 1 addition & 1 deletion libs/core/testing/src/performance.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ average: {{average(elapsed)}}
name: {{name}},
executor: {{context(executor)}},
average: {{average(elapsed)}}
<CTestMeasurement type=\"numeric/double\" name=\"{{name}}_{{context(executor)}}\">{{average(elapsed)}}</CTestMeasurement>
<CTestMeasurement type="numeric/double" name="{{name}}_{{context(executor)}}">{{average(elapsed)}}</CTestMeasurement>
{{/result}})DELIM";
}

Expand Down

0 comments on commit f3620d7

Please sign in to comment.