Skip to content

Commit

Permalink
Merge #6226
Browse files Browse the repository at this point in the history
6226: Re-enable dependency on segmented algorithms on CircleCI r=hkaiser a=hkaiser



Co-authored-by: Hartmut Kaiser <[email protected]>
Co-authored-by: Panos Syskakis <[email protected]>
  • Loading branch information
3 people committed Jul 16, 2023
2 parents 1d49cec + dcb5415 commit acc763d
Show file tree
Hide file tree
Showing 5 changed files with 9 additions and 11 deletions.
4 changes: 1 addition & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -969,9 +969,7 @@ workflows:
- tests.examples
- tests.unit.algorithms
- tests.unit.container_algorithms
# disable the dependency on the segmented algorithms
# temporarily to enable install to proceed
# - tests.unit.segmented_algorithms
- tests.unit.segmented_algorithms
- tests.unit1
- tests.unit2
- tests.regressions
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -361,9 +361,9 @@ template <typename T>
void exclusive_scan_tests(std::vector<hpx::id_type>& localities)
{
#if defined(HPX_DEBUG)
std::size_t const length = 10000;
std::size_t const length = 1000;
#else
std::size_t const length = 100000;
std::size_t const length = 10000;
#endif

exclusive_scan_tests_with_policy<T>(length, hpx::container_layout);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -328,9 +328,9 @@ template <typename T>
void exclusive_scan_tests(std::vector<hpx::id_type>& localities)
{
#if defined(HPX_DEBUG)
std::size_t const length = 10000;
std::size_t const length = 1000;
#else
std::size_t const length = 100000;
std::size_t const length = 10000;
#endif

exclusive_scan_tests_with_policy<T>(length, hpx::container_layout);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,9 @@ template <typename T>
void inclusive_scan_tests(std::vector<hpx::id_type>& localities)
{
#if defined(HPX_DEBUG)
std::size_t const length = 10000;
std::size_t const length = 1000;
#else
std::size_t const length = 100000;
std::size_t const length = 10000;
#endif

inclusive_scan_tests_with_policy<T>(length, hpx::container_layout);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -321,9 +321,9 @@ template <typename T>
void inclusive_scan_tests(std::vector<hpx::id_type>& localities)
{
#if defined(HPX_DEBUG)
std::size_t const length = 10000;
std::size_t const length = 1000;
#else
std::size_t const length = 100000;
std::size_t const length = 10000;
#endif

inclusive_scan_tests_with_policy<T>(length, hpx::container_layout);
Expand Down

0 comments on commit acc763d

Please sign in to comment.