Skip to content
Started 1 day 19 hr ago
Took 6 hr 0 min
Aborted

Build #49 (May 16, 2024, 9:27:10 AM)

Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)
Changes
  1. Suppress deprecated warnings via pragma push/pop in the tests (#6999) (details / githubweb)
  2. #6805: add initial converting constructor from mdspan to view (details / githubweb)
  3. #6805: some formatting fixes (details / githubweb)
  4. #6805: guard mdspan conversion test (details / githubweb)
  5. #6805: fix host function call from device and fix more cuda warnings in mdspan (details / githubweb)
  6. #6805: fix more formatting (details / githubweb)
  7. #6805: fix constraints on mdspan converting constructor and allow runtime-unmanaged (but compile-time managed) views to be constructed from mdspans (details / githubweb)
  8. #6805: make mdspan helpers namespace consistent (details / githubweb)
  9. #6805: add conversion to mdspan (details / githubweb)
  10. #6805: add to_mdspan (details / githubweb)
  11. #6805: fix formatting and update tests (details / githubweb)
  12. #6805: more formatting fixes (details / githubweb)
  13. #6805: fixes to strided layout and more tests (details / githubweb)
  14. #6805: fixe compilation with nvcc (details / githubweb)
  15. #6805: various formatting fixes and cleanup (details / githubweb)
  16. #6805: clean up implementation slightly (details / githubweb)
  17. #6805: fix rebase artifact (details / githubweb)
  18. #6805: add more test types (details / githubweb)
  19. #6805: fix unused type (details / githubweb)
  20. Fix more unused types (details / githubweb)
  21. #6805: fix insufficient array size for strides (details / githubweb)
  22. #6805: new method for getting strides from ViewOffset (details / githubweb)
  23. #6805: remove stray character (details / githubweb)
  24. #6805: address some initial PR comments (details / githubweb)
  25. #6805: fix dependency on ExecutionSpace template parameter (details / githubweb)
  26. #6805: move MDSpan impl from Kokkos::Experimental::Impl->Kokkos::Impl (details / githubweb)
  27. #6805: move dimension_from_extent (details / githubweb)
  28. #6805: fix formatting (details / githubweb)
  29. Remove unused functions and structs (details / githubweb)
  30. Introduce KOKKOS_IMPL_CONDITIONAL_EXPLICIT macro for use in View (details / githubweb)
  31. Add default accessor_type to to_mdspan funciton (details / githubweb)
  32. Improve test and fix for C++20 where we need an additional ctor (details / githubweb)
  33. Fix clang-format (details / githubweb)
  34. address some more reviewer comments (details / githubweb)
  35. #6805: fix array overrun bug in stride conversion function (details / githubweb)
  36. #6805: fix unused parameter on 0 size views (details / githubweb)
  37. #6805: disable clang formatting for usage of maybe_unused as it gives incorrect C++ (details / githubweb)
  38. #6805: address PR feedback in test (details / githubweb)
  39. #6805: fix namespace in test (details / githubweb)
  40. #6805: move test out of subdirectory (details / githubweb)
  41. #6805: arrange test alphabetically (details / githubweb)
  42. #6805: fix test (details / githubweb)
  43. #6805: use the extent value for constructing static extents in layouts rather than 0 (details / githubweb)
  44. #6805: remove dimension_from_extent as it is not used anymore (details / githubweb)
  45. #6805: fix formatting (details / githubweb)
  46. #6805: switch out conditionally explicit macro for explicit check on C++ version and a comment (details / githubweb)
  47. #6805: fix constraints on implicit mdspan conversion and test for undesirable implicit conversions (details / githubweb)
  48. #6805: add test for reproducing padding issue (details / githubweb)
  49. #6805: use strides for layout_left_padded and layout_right_padded (details / githubweb)
  50. #6805: fix formatting (details / githubweb)
  51. #6805: add mdspan fixes from https://github.com/kokkos/mdspan/pull/327 (details / githubweb)
  52. #6805: make mdspan conversion compatible with device code (details / githubweb)
  53. #6805: fix accidentally disabled code (details / githubweb)
  54. #6805: address PR feedback (details / githubweb)
  55. #6805: don't allow arbitrary padding values (details / githubweb)
  56. #6805: fix formatting (details / githubweb)
  57. #6805: add maybe_unused to indices for checking padding on conversion from mdspan (details / githubweb)
  58. This PR changes the default execution behavior of the parallel_for(team-policy) constructs in the OpenACC backend. (details / githubweb)

crtrott commented: Retest this please!

This run spent:

  • 8 hr 2 min waiting;
  • 6 hr 0 min build duration;
  • 6 hr 0 min total from scheduled to completion.
Revision: 64201e44c3a5817bf5a724e0fa95b4a0d64a0cd0
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: a62516cb672a895e1936bba35f1b4a03ff8d50f2
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 498eab9d1c8e628e25027b04712ba5baafda4f02
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: fdb69782026b9e60a5423d5437044973a1bfc803
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 72dede8d89993e832e8d0c025007dd283a893e07
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: d45e28a01ba795b5266f52ad200e9829eba354a9
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 1962d2490e0fb87cc92ed12d5aa44df378f51b94
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: b4691a1d997cdecb7fa742178d2ac32a8919110a
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 404ad94bbb0846aa621b813752532225934e4560
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 226e6ede7e1ab6b26eb1a02127c6db32f65273ad
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 37f24f262f6ee542de127b3be891fdff127ea06c
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830
Revision: 8ddfc615607b085bca975d3a30be0e8be3859ec9
Repository: https://github.com/kokkos/kokkos.git
  • PR-6830

Timeout has been exceeded