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

oneapi/tbb/detail/_flow_graph_impl.h:350:71: error: no matching function for call to ‘wait::wait(tbb::detail::d1::wait_context&, tbb::detail::d1::task_group_context&)’ #1555

Closed
Mifodix opened this issue Nov 7, 2024 · 4 comments
Labels

Comments

@Mifodix
Copy link

Mifodix commented Nov 7, 2024

Summary

oneapi/tbb/detail/_flow_graph_impl.h:350:71: error: no matching function for call to ‘wait::wait(tbb::detail::d1::wait_context&, tbb::detail::d1::task_group_context&)’

Version

2022.0

Environment

Provide any environmental details that you consider significant for reproducing the issue.
The following information is important:

  • Intel
  • Linux
  • GCC 11

Observed Behavior

Document behavior you observe.

Expected Behavior

Document behavior you expect.

Steps To Reproduce

Check that the issue is reproducible with the latest revision
of the master branch. Include all the steps to reproduce the issue.

@Mifodix Mifodix added the bug label Nov 7, 2024
@Mifodix
Copy link
Author

Mifodix commented Nov 7, 2024

Possible fix:

+++ _flow_graph_impl.h
@@ -347,7 +347,7 @@
         caught_exception = false;
         try_call([this] {
             my_task_arena->execute([this] {
-                wait(my_wait_context_vertex.get_context(), *my_context);
+                d1::wait(my_wait_context_vertex.get_context(), *my_context);
             });
             cancelled = my_context->is_group_execution_cancelled();
         }).on_exception([this] {

@dnmokhov
Copy link
Contributor

dnmokhov commented Nov 7, 2024

Thank you for reporting this issue. It has already been fixed in 9c9ace2.

@omalyshe
Copy link
Contributor

omalyshe commented Nov 7, 2024

@Mifodix Please, check if 9c9ace2 fixes it.

@Mifodix
Copy link
Author

Mifodix commented Nov 7, 2024

Фиксед :)

@Mifodix Mifodix closed this as completed Nov 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

3 participants