• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

STEllAR-GROUP / hpx / #882

31 Aug 2023 07:44PM UTC coverage: 41.798% (-44.7%) from 86.546%
#882

push

19442 of 46514 relevant lines covered (41.8%)

126375.38 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/libs/core/executors/src/fork_join_executor.cpp
1
//  Copyright (c) 2021 ETH Zurich
2
//
3
//  SPDX-License-Identifier: BSL-1.0
4
//  Distributed under the Boost Software License, Version 1.0. (See accompanying
5
//  file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
6

7
#include <hpx/executors/fork_join_executor.hpp>
8

9
#include <ostream>
10

11
namespace hpx::execution::experimental {
12

13
    std::ostream& operator<<(
×
14
        std::ostream& os, fork_join_executor::loop_schedule schedule)
15
    {
16
        switch (schedule)
×
17
        {
18
        case fork_join_executor::loop_schedule::static_:
×
19
            os << "static";
×
20
            break;
×
21
        case fork_join_executor::loop_schedule::dynamic:
×
22
            os << "dynamic";
×
23
            break;
×
24
        default:
×
25
            os << "<unknown>";
×
26
            break;
×
27
        }
28

29
        os << " ("
30
           << static_cast<
31
                  std::underlying_type_t<fork_join_executor::loop_schedule>>(
32
                  schedule)
33
           << ")";
×
34

35
        return os;
×
36
    }
37
}    // namespace hpx::execution::experimental
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc