Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Integrate CUDASTF -> CudaX #2572

Merged
merged 364 commits into from
Oct 24, 2024
Merged

Integrate CUDASTF -> CudaX #2572

merged 364 commits into from
Oct 24, 2024
This pull request is big! We’re only showing the most recent 250 commits.

Commits on Oct 16, 2024

  1. Configuration menu
    Copy the full SHA
    ad60e3b View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    cbdcd6a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    7ebd502 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    e73e5fa View commit details
    Browse the repository at this point in the history
  5. Erroneous assertions

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    ca4a389 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    26e333c View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    fe864ca View commit details
    Browse the repository at this point in the history
  8. Fix ambiguities

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    96e0864 View commit details
    Browse the repository at this point in the history
  9. Fix more

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    c40076b View commit details
    Browse the repository at this point in the history
  10. Revert "Try to avoid ambiguous operators"

    This reverts commit df1777f.
    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    5efbe2e View commit details
    Browse the repository at this point in the history
  11. Fix comparisons for good

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    32500bf View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    ee6170a View commit details
    Browse the repository at this point in the history
  13. avoid warning from gcc

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    52b3d89 View commit details
    Browse the repository at this point in the history
  14. use CCCL macros

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    d8ea187 View commit details
    Browse the repository at this point in the history
  15. Do not use open __host__ or __device__

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    d078088 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    0c3c7db View commit details
    Browse the repository at this point in the history
  17. Do not use MSVC macro

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    7a09a95 View commit details
    Browse the repository at this point in the history
  18. No source location for gcc11

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    caacad1 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    4d0b5d2 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    d2465da View commit details
    Browse the repository at this point in the history
  21. Rename cudax test targets to match CCCL conventions. (NVIDIA#2568)

    <project>.<dialect>.test.<testname>
    instead of
    <project>.<dialect>.<testname>_tests
    alliepiper authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    88cb550 View commit details
    Browse the repository at this point in the history
  22. Update project list in issue template (NVIDIA#2532)

    * Update project list in issue template
    
    * Update .github/ISSUE_TEMPLATE/feature_request.yml
    
    Co-authored-by: Jake Hemstad <[email protected]>
    
    ---------
    
    Co-authored-by: Jake Hemstad <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    0c7ac3f View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    b714287 View commit details
    Browse the repository at this point in the history
  24. Configuration menu
    Copy the full SHA
    4cf6604 View commit details
    Browse the repository at this point in the history
  25. Fix an error in the documentation of the ci/build_common.sh script wh…

    …ich mentions -arch=80 instead of -arch 80 (NVIDIA#2574)
    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    31ab4bd View commit details
    Browse the repository at this point in the history
  26. gcc-14 gained the ability to mangle noexcept expressions (NVIDIA#2565)

    * gcc-14 gained the ability to mangle `noexcept` expressions
    
    * Update libcudacxx/include/cuda/std/__concepts/__concept_macros.h
    
    ---------
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    652f5ec View commit details
    Browse the repository at this point in the history
  27. Miscellaneous simple fixes (NVIDIA#2575)

    * Do not include our own string.h file (NVIDIA#2444)
    
    That might conflict with the host standard library
    
    * Add missing `` in docs/cub/index.rst
    
    * Very minor grammar fix in docs/cub/index.rst
    
    * Remove outdated "Getting The Thrust Source Code" section.
    
    * Fix TEST_THRUST_PATH in c/parallel/test/CMakeLists.txt (looks like a copy-paste-forgot-to-modify-oversight)
    
    * Remove a stray semicolon in c/parallel/src/reduce.cu (functionally inconsequential).
    
    * Fix a memory leak in c/parallel/test/c2h.h (this leak is only in a test and most likely not critical at all).
    
    ---------
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f5bc208 View commit details
    Browse the repository at this point in the history
  28. Avoid including yvals.h when the compiler is not MSVC. (NVIDIA#2545)

    * Only include yvals when the compiler is MSVC
    
    * Use the right check
    
    ---------
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    a7e7ffd View commit details
    Browse the repository at this point in the history
  29. Fix popc.h when architecture is not x86 on MSVC. (NVIDIA#2524)

    * Fix popc when architecture is not x86
    
    * Update libcudacxx/include/cuda/std/__bit/popc.h
    
    ---------
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    ac1e957 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    8c7fb97 View commit details
    Browse the repository at this point in the history
  31. fix the forwarding of the receiver in the just_from algorithm (NVID…

    …IA#2569)
    
    * fix the forwarding of the receiver in the `just_from` algorithm
    
    * suppress clang deprecation warning about `prop` and `env`
    
    * suppress clang warning about unknown diagnostic
    ericniebler authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    140ad31 View commit details
    Browse the repository at this point in the history
  32. Block type pack indexing on NVCC (NVIDIA#2563)

    * Block type indexing if the compiler is NVCC.
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    aeee99e View commit details
    Browse the repository at this point in the history
  33. Cleanup the semaphore headers (NVIDIA#2441)

    * Move `__atomic_semaphore_base` to its own file
    
    * Move `counting_semaphore` to its own file
    
    * Move `cuda::counting_semaphore` to its own file
    
    * Cleanup the semaphore headers
    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    0bb59e5 View commit details
    Browse the repository at this point in the history
  34. Add _CCCL_GRID_CONSTANT macro (NVIDIA#2530)

    * add _CCCL_GRID_CONSTANT__
    fbusato authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    e211869 View commit details
    Browse the repository at this point in the history
  35. Add _CCCL_RESTRICT macro (NVIDIA#2529)

    * add _CCCL_RESTRICT macro
    fbusato authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    9a110f2 View commit details
    Browse the repository at this point in the history
  36. Try to use the same redefinition of __assert_fail as pytorch has (N…

    …VIDIA#2577)
    
    * Try to use the same redefinition of `__assert_fail` as pytorch has
    
    * Also dont use the `__THROW` macro as that might be undefined
    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    14ce44a View commit details
    Browse the repository at this point in the history
  37. Configuration menu
    Copy the full SHA
    dca8e39 View commit details
    Browse the repository at this point in the history
  38. Expose parts of <cuda/std/memory> (NVIDIA#2502)

    This exposes some parts of `<memory>` that are frequently used and safe to use everywhere.
    
    We do not expose some features like allocators and smart pointers until we are sure that they are usefull and properly implemented.
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    e10c75d View commit details
    Browse the repository at this point in the history
  39. add a config macro for testing support for inline variables (NVIDIA#2581

    )
    
    * add a config macro for testing support for inline variables
    
    * Drop `_LIBCUDACXX_` macros
    
    * Use a consistent macro for enabling variable templates
    
    * Move it in repo.toml
    
    ---------
    
    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    2 people authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    134f087 View commit details
    Browse the repository at this point in the history
  40. add missing header

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f9c3a47 View commit details
    Browse the repository at this point in the history
  41. Configuration menu
    Copy the full SHA
    ba4dcf2 View commit details
    Browse the repository at this point in the history
  42. Revert "use CCCL macros"

    This reverts commit 1c12bd5.
    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    6d0e4a4 View commit details
    Browse the repository at this point in the history
  43. Configuration menu
    Copy the full SHA
    8814d3a View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    3ad95c2 View commit details
    Browse the repository at this point in the history
  45. fix fallback macro

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    da42da8 View commit details
    Browse the repository at this point in the history
  46. Configuration menu
    Copy the full SHA
    d41d4bb View commit details
    Browse the repository at this point in the history
  47. Configuration menu
    Copy the full SHA
    ece9600 View commit details
    Browse the repository at this point in the history
  48. Add config include and header guard

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    4d6e6fd View commit details
    Browse the repository at this point in the history
  49. disable experiment needing pthreads for now

    Cédric Augonnet authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    122641f View commit details
    Browse the repository at this point in the history
  50. Configuration menu
    Copy the full SHA
    8f95cc2 View commit details
    Browse the repository at this point in the history
  51. Use ptrdiff_t instead of ssize_t

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    110021d View commit details
    Browse the repository at this point in the history
  52. Add missing include

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    5f55337 View commit details
    Browse the repository at this point in the history
  53. MSVC needs a confirming preprocessor

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    4a7707c View commit details
    Browse the repository at this point in the history
  54. Properly use begin / end on vector

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    dfd17a0 View commit details
    Browse the repository at this point in the history
  55. use int for the dev_id in stream_pool

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    44ac3d0 View commit details
    Browse the repository at this point in the history
  56. Fix some conversion warnings

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    8e50703 View commit details
    Browse the repository at this point in the history
  57. Allow exception to be copied

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    a73a19e View commit details
    Browse the repository at this point in the history
  58. Avoid shadowing warning

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    714ca04 View commit details
    Browse the repository at this point in the history
  59. Configuration menu
    Copy the full SHA
    a558cec View commit details
    Browse the repository at this point in the history
  60. Use the right fprintf operator

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    9c2f964 View commit details
    Browse the repository at this point in the history
  61. More conversion

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    81a77c4 View commit details
    Browse the repository at this point in the history
  62. Avoid shadowing

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    f949dd8 View commit details
    Browse the repository at this point in the history
  63. More conversions

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    75f6083 View commit details
    Browse the repository at this point in the history
  64. use begin end of vector

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    65f96d3 View commit details
    Browse the repository at this point in the history
  65. Avoid the identifier small on windows

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    2d98d5b View commit details
    Browse the repository at this point in the history
  66. Use alias for base class

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    bbe194e View commit details
    Browse the repository at this point in the history
  67. Avoid callback_queues on windows

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    23a79e7 View commit details
    Browse the repository at this point in the history
  68. More conversion issues

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    1b79f13 View commit details
    Browse the repository at this point in the history
  69. Drop unneeded template keyword

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    0903c8e View commit details
    Browse the repository at this point in the history
  70. Add missing include

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    23e64e8 View commit details
    Browse the repository at this point in the history
  71. fix more conversions

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    3558aa9 View commit details
    Browse the repository at this point in the history
  72. Configuration menu
    Copy the full SHA
    bb1860f View commit details
    Browse the repository at this point in the history
  73. Disable test for windows

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    1f0ef9f View commit details
    Browse the repository at this point in the history
  74. Avoid unreachable warnings

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    91d139f View commit details
    Browse the repository at this point in the history
  75. Avoid uninitialized variable warnigns

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    27c8da0 View commit details
    Browse the repository at this point in the history
  76. More conversions

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    69d4b17 View commit details
    Browse the repository at this point in the history
  77. Configuration menu
    Copy the full SHA
    4750661 View commit details
    Browse the repository at this point in the history
  78. More conversion

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    0cc117c View commit details
    Browse the repository at this point in the history
  79. Disable unused variable warning

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    47de30c View commit details
    Browse the repository at this point in the history
  80. Configuration menu
    Copy the full SHA
    c6f66b4 View commit details
    Browse the repository at this point in the history
  81. Disable more filesystem tests on MSVC

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    0428790 View commit details
    Browse the repository at this point in the history
  82. more conversions...

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    7483dcd View commit details
    Browse the repository at this point in the history
  83. More conversions

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    0cfe9b1 View commit details
    Browse the repository at this point in the history
  84. Configuration menu
    Copy the full SHA
    d16094a View commit details
    Browse the repository at this point in the history
  85. actually use the right class

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    1aaff27 View commit details
    Browse the repository at this point in the history
  86. Use windows signal handler

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    e96bfd1 View commit details
    Browse the repository at this point in the history
  87. More conversions

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    65eec56 View commit details
    Browse the repository at this point in the history
  88. More shadowing

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    5162d73 View commit details
    Browse the repository at this point in the history
  89. More conversiosn

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    66471c6 View commit details
    Browse the repository at this point in the history
  90. Configuration menu
    Copy the full SHA
    64da8d2 View commit details
    Browse the repository at this point in the history
  91. link to stf in cudax doc

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    2659d10 View commit details
    Browse the repository at this point in the history
  92. Conversions all over

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    a62bbc4 View commit details
    Browse the repository at this point in the history
  93. Shadowing warning

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    27d7591 View commit details
    Browse the repository at this point in the history
  94. More conversions and unused variables

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    63e4bf4 View commit details
    Browse the repository at this point in the history
  95. Shadowing warnings

    miscco authored and caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    610671c View commit details
    Browse the repository at this point in the history
  96. Configuration menu
    Copy the full SHA
    cfa5b34 View commit details
    Browse the repository at this point in the history
  97. Configuration menu
    Copy the full SHA
    5e9902f View commit details
    Browse the repository at this point in the history
  98. use our custom hash

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    4d61327 View commit details
    Browse the repository at this point in the history
  99. Configuration menu
    Copy the full SHA
    479961c View commit details
    Browse the repository at this point in the history
  100. Configuration menu
    Copy the full SHA
    018c596 View commit details
    Browse the repository at this point in the history
  101. Configuration menu
    Copy the full SHA
    4344702 View commit details
    Browse the repository at this point in the history
  102. fix a reference in the doc

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    1d8e67c View commit details
    Browse the repository at this point in the history
  103. remove redundant traits

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    4fb0313 View commit details
    Browse the repository at this point in the history
  104. Fix a typo

    caugonnet committed Oct 16, 2024
    Configuration menu
    Copy the full SHA
    62631eb View commit details
    Browse the repository at this point in the history
  105. Configuration menu
    Copy the full SHA
    a1b3b23 View commit details
    Browse the repository at this point in the history

Commits on Oct 17, 2024

  1. Restore changes

    miscco committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    6d06bc2 View commit details
    Browse the repository at this point in the history
  2. Remove unused variable

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    517e32c View commit details
    Browse the repository at this point in the history
  3. remove an unused task dep

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    779cf70 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    4926252 View commit details
    Browse the repository at this point in the history
  5. avoid type conversions

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    948d3bb View commit details
    Browse the repository at this point in the history
  6. Add images for the stf doc

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    c05e3dc View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    212fc31 View commit details
    Browse the repository at this point in the history
  8. Fix type conversion issues

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    e6b2664 View commit details
    Browse the repository at this point in the history
  9. do not use ssize_t

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    9667105 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    15570b1 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    4503cdb View commit details
    Browse the repository at this point in the history
  12. minor type fixes

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    d229eed View commit details
    Browse the repository at this point in the history
  13. do not use M_PI

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    821b556 View commit details
    Browse the repository at this point in the history
  14. Improvements for STF doc

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    60003c2 View commit details
    Browse the repository at this point in the history
  15. Configuration menu
    Copy the full SHA
    c32696a View commit details
    Browse the repository at this point in the history
  16. doc updates

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    74bc606 View commit details
    Browse the repository at this point in the history
  17. Doc improvement

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    94b6186 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    d7e8374 View commit details
    Browse the repository at this point in the history
  19. move hash for pos4 and dim4

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    dd71c42 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    34f0cdd View commit details
    Browse the repository at this point in the history
  21. hash namespaces

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    3981e16 View commit details
    Browse the repository at this point in the history
  22. add missing header

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    796c585 View commit details
    Browse the repository at this point in the history
  23. fix url

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    2ab5686 View commit details
    Browse the repository at this point in the history
  24. move hash of tasks

    caugonnet committed Oct 17, 2024
    Configuration menu
    Copy the full SHA
    ef4c8c4 View commit details
    Browse the repository at this point in the history

Commits on Oct 18, 2024

  1. doc fixes

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    7b3c844 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    48cad8a View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    6fefcb9 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    988b166 View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    76dd67b View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    ca0fce4 View commit details
    Browse the repository at this point in the history
  7. more things in reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    5c08ffb View commit details
    Browse the repository at this point in the history
  8. use reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    6157a46 View commit details
    Browse the repository at this point in the history
  9. use reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    aa97444 View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    1342c95 View commit details
    Browse the repository at this point in the history
  11. Configuration menu
    Copy the full SHA
    6f872ec View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    745f51c View commit details
    Browse the repository at this point in the history
  13. reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    6941302 View commit details
    Browse the repository at this point in the history
  14. fixes for hashtble

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    cc654cb View commit details
    Browse the repository at this point in the history
  15. simpler code

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    ba81530 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    2fb894d View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    f5df2ad View commit details
    Browse the repository at this point in the history
  18. reserved::customHash

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    cc60b7d View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    7f2793e View commit details
    Browse the repository at this point in the history
  20. reserved::handle

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    970cb09 View commit details
    Browse the repository at this point in the history
  21. Configuration menu
    Copy the full SHA
    42197cd View commit details
    Browse the repository at this point in the history
  22. use reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    da83e9f View commit details
    Browse the repository at this point in the history
  23. Configuration menu
    Copy the full SHA
    a8109fd View commit details
    Browse the repository at this point in the history
  24. use reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    680d2d3 View commit details
    Browse the repository at this point in the history
  25. use reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    6ea9eb6 View commit details
    Browse the repository at this point in the history
  26. Configuration menu
    Copy the full SHA
    75bf781 View commit details
    Browse the repository at this point in the history
  27. add missing reserved

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    a50cbb5 View commit details
    Browse the repository at this point in the history
  28. Configuration menu
    Copy the full SHA
    64af74d View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    ee36d9d View commit details
    Browse the repository at this point in the history
  30. use reserved::

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    5c5354e View commit details
    Browse the repository at this point in the history
  31. Configuration menu
    Copy the full SHA
    7d97d17 View commit details
    Browse the repository at this point in the history
  32. note about child graphs

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    df8f646 View commit details
    Browse the repository at this point in the history
  33. fix doc levels

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    538c418 View commit details
    Browse the repository at this point in the history
  34. reserved::host_launch_scope

    caugonnet committed Oct 18, 2024
    Configuration menu
    Copy the full SHA
    37926fa View commit details
    Browse the repository at this point in the history
  35. Configuration menu
    Copy the full SHA
    af527df View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    3cca3dd View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2024

  1. Configuration menu
    Copy the full SHA
    c9fa173 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    0be7346 View commit details
    Browse the repository at this point in the history

Commits on Oct 20, 2024

  1. minor improvement for doc

    caugonnet committed Oct 20, 2024
    Configuration menu
    Copy the full SHA
    eab1fb4 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    97b49f1 View commit details
    Browse the repository at this point in the history
  3. minor stuffs for doc

    caugonnet committed Oct 20, 2024
    Configuration menu
    Copy the full SHA
    95dad9c View commit details
    Browse the repository at this point in the history

Commits on Oct 21, 2024

  1. more stf doc

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    7246269 View commit details
    Browse the repository at this point in the history
  2. use __device__ in doc

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d6e6bb8 View commit details
    Browse the repository at this point in the history
  3. reserved::repeat_scope

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    1866c21 View commit details
    Browse the repository at this point in the history
  4. stf doc

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    11b805c View commit details
    Browse the repository at this point in the history
  5. Configuration menu
    Copy the full SHA
    f1f7654 View commit details
    Browse the repository at this point in the history
  6. Configuration menu
    Copy the full SHA
    eda4cef View commit details
    Browse the repository at this point in the history
  7. Configuration menu
    Copy the full SHA
    65914b4 View commit details
    Browse the repository at this point in the history
  8. Configuration menu
    Copy the full SHA
    3b0a325 View commit details
    Browse the repository at this point in the history
  9. minor C++ fixes

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    0fdc09c View commit details
    Browse the repository at this point in the history
  10. Configuration menu
    Copy the full SHA
    737c34e View commit details
    Browse the repository at this point in the history
  11. more minor C++ fixes

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    42b5098 View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    1d9e1f6 View commit details
    Browse the repository at this point in the history
  13. provide missing header

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    936a63c View commit details
    Browse the repository at this point in the history
  14. use %zu to print size_t

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    fa81ea9 View commit details
    Browse the repository at this point in the history
  15. fix a typo

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    b3a1490 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    8c81915 View commit details
    Browse the repository at this point in the history
  17. Configuration menu
    Copy the full SHA
    4b1af94 View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    ad06b11 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    2788334 View commit details
    Browse the repository at this point in the history
  20. use integers for simplicity

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    a66581c View commit details
    Browse the repository at this point in the history
  21. do not use ssize_t

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    e4607b4 View commit details
    Browse the repository at this point in the history
  22. do not use ssize_t

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d23e47f View commit details
    Browse the repository at this point in the history
  23. remove some ssize_t

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    b01d0f0 View commit details
    Browse the repository at this point in the history
  24. remove some ssize_t

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    6352347 View commit details
    Browse the repository at this point in the history
  25. add missing doxygen block

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    ad861eb View commit details
    Browse the repository at this point in the history
  26. fix a type error

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    9854bce View commit details
    Browse the repository at this point in the history
  27. fix unused vars

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    4582a50 View commit details
    Browse the repository at this point in the history
  28. fix some var shadowing

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    3b01299 View commit details
    Browse the repository at this point in the history
  29. Configuration menu
    Copy the full SHA
    c42bf98 View commit details
    Browse the repository at this point in the history
  30. Configuration menu
    Copy the full SHA
    be78b70 View commit details
    Browse the repository at this point in the history
  31. fix a typo

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    f9b81a2 View commit details
    Browse the repository at this point in the history
  32. Configuration menu
    Copy the full SHA
    8df7889 View commit details
    Browse the repository at this point in the history
  33. fix some misuse of auto

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    a1dcc4f View commit details
    Browse the repository at this point in the history
  34. minor C++ issues

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    354228a View commit details
    Browse the repository at this point in the history
  35. fix type error

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    eff7fc0 View commit details
    Browse the repository at this point in the history
  36. Configuration menu
    Copy the full SHA
    81f873a View commit details
    Browse the repository at this point in the history
  37. fix float/double errors

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    505b1fa View commit details
    Browse the repository at this point in the history
  38. pre-commit run

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    90b35b8 View commit details
    Browse the repository at this point in the history
  39. Add doxygen to task::release

    andralex committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    11cfa23 View commit details
    Browse the repository at this point in the history
  40. skip test on msvc

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    3b8b79c View commit details
    Browse the repository at this point in the history
  41. pre-commit run

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    6506371 View commit details
    Browse the repository at this point in the history
  42. Define setenv on Windows

    andralex committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d4b4b36 View commit details
    Browse the repository at this point in the history
  43. Add inline to setenv

    andralex committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    d6e726b View commit details
    Browse the repository at this point in the history
  44. Configuration menu
    Copy the full SHA
    e194c22 View commit details
    Browse the repository at this point in the history
  45. fixed for doxygen

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    119eb3c View commit details
    Browse the repository at this point in the history
  46. more doxygen

    caugonnet committed Oct 21, 2024
    Configuration menu
    Copy the full SHA
    acf9b36 View commit details
    Browse the repository at this point in the history

Commits on Oct 22, 2024

  1. Configuration menu
    Copy the full SHA
    db443a2 View commit details
    Browse the repository at this point in the history
  2. disable C4459

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    bc15516 View commit details
    Browse the repository at this point in the history
  3. fix an ifdef typo

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    cb7a4d7 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    507fa7e View commit details
    Browse the repository at this point in the history
  5. try to help doxygen

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    6375528 View commit details
    Browse the repository at this point in the history
  6. add missing string header

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    e463b8c View commit details
    Browse the repository at this point in the history
  7. help doxygen

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    64b1140 View commit details
    Browse the repository at this point in the history
  8. fixes for sphinx

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    8ef667e View commit details
    Browse the repository at this point in the history
  9. rst improvements

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    8f4372c View commit details
    Browse the repository at this point in the history
  10. skip that test with msvc

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    f1d7f33 View commit details
    Browse the repository at this point in the history
  11. rst format fixes

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    7f2738f View commit details
    Browse the repository at this point in the history
  12. Fix some constexpr issue

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    8845aa8 View commit details
    Browse the repository at this point in the history
  13. Configuration menu
    Copy the full SHA
    c839599 View commit details
    Browse the repository at this point in the history
  14. mention task_fence

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    b295e19 View commit details
    Browse the repository at this point in the history
  15. unused variables

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    eb58140 View commit details
    Browse the repository at this point in the history
  16. Configuration menu
    Copy the full SHA
    98014f9 View commit details
    Browse the repository at this point in the history
  17. cleaner code

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    714d11f View commit details
    Browse the repository at this point in the history
  18. Configuration menu
    Copy the full SHA
    7596806 View commit details
    Browse the repository at this point in the history
  19. Configuration menu
    Copy the full SHA
    1113130 View commit details
    Browse the repository at this point in the history
  20. Configuration menu
    Copy the full SHA
    d160e07 View commit details
    Browse the repository at this point in the history
  21. fix small C++ issues

    caugonnet committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    7b5deb3 View commit details
    Browse the repository at this point in the history
  22. Disable MSVC for now

    miscco committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    ae545f8 View commit details
    Browse the repository at this point in the history
  23. Fix formatting

    miscco committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    c33e12b View commit details
    Browse the repository at this point in the history
  24. No examples for you MSVC

    miscco committed Oct 22, 2024
    Configuration menu
    Copy the full SHA
    bacff41 View commit details
    Browse the repository at this point in the history
  25. Configuration menu
    Copy the full SHA
    bacdf44 View commit details
    Browse the repository at this point in the history
  26. Update cudax/CMakeLists.txt

    Co-authored-by: Michael Schellenberger Costa <[email protected]>
    alliepiper and miscco authored Oct 22, 2024
    Configuration menu
    Copy the full SHA
    0f093e7 View commit details
    Browse the repository at this point in the history

Commits on Oct 23, 2024

  1. Configuration menu
    Copy the full SHA
    b26dcbc View commit details
    Browse the repository at this point in the history
  2. Remove overrides

    miscco authored Oct 23, 2024
    Configuration menu
    Copy the full SHA
    34b2c46 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    fc25e83 View commit details
    Browse the repository at this point in the history
  4. Configuration menu
    Copy the full SHA
    feb9544 View commit details
    Browse the repository at this point in the history

Commits on Oct 24, 2024

  1. Add assertion to each()

    andralex committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    37bbaa0 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    e7fc537 View commit details
    Browse the repository at this point in the history
  3. Configuration menu
    Copy the full SHA
    985523e View commit details
    Browse the repository at this point in the history
  4. Use std and fix formating

    miscco committed Oct 24, 2024
    Configuration menu
    Copy the full SHA
    a9f9421 View commit details
    Browse the repository at this point in the history