Conversation
…cution in throughput examples, disable the other examples
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Builds on top of #16 but replaces stdexec with beman.task - another implementation of
std::execution::taskfor C++26 (build on top beman.execution)beman.task/beman.execution requires C++23 compiler
The
--await_strategy=pollisn't supported. The original stdexec implementation was done withrepeat_until/repeat_effect_untilsender adapter which isn't part of C++26. Portingrepeat_untilto beman appears to be tedious.GCC 14 (+CUDA 12.9) compilation doesn't work due to internal compiler errors:
traccc/device/common/src/seeding/seed_parameter_estimation_algorithm.cpp:31:6: internal compiler error: in set_parm_rtl, at cfgexpand.cc:1436 31 | auto seed_parameter_estimation_algorithm::operator()( | ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~traccc/device/common/src/clusterization/clusterization_algorithm.cpp:36:1: internal compiler error: in set_parm_rtl, at cfgexpand.cc:1436 36 | clusterization_algorithm::operator()( | ^~~~~~~~~~~~~~~~~~~~~~~~GCC 16.1 (+CUDA 13.3) appears to work although a few errors are reported (
Wmaybe-uninitialized,Warray-bounds). These appear to be false positivesAt least for now configuration with 1 thread, 1 slot results in the deadlock regardless of synchronization used.