Skip to content

Commit

Permalink
Reduce test workload to prevent timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
Pansysk75 committed May 10, 2023
1 parent a1843cf commit dcb5415
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
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 dcb5415

Please sign in to comment.