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

HPX_LIMIT does not work for local dataflow #798

Closed
mariomulansky opened this issue Jul 22, 2013 · 0 comments
Closed

HPX_LIMIT does not work for local dataflow #798

mariomulansky opened this issue Jul 22, 2013 · 0 comments

Comments

@mariomulansky
Copy link
Contributor

Despite the recent fix, it is still impossible to use functors with more than 6 arguments in local dataflow objects. Adding the following code to hpx/tests/regressions/lcos/regression_set_hpx_limit_771.cpp results in compile errors:

future< double > f = make_ready_future( 1.0 );
f = hpx::lcos::local::dataflow( hpx::launch::sync , 
                               unwrapped( [](double x1 , double x2 , double x3 , double x4 ,
                                         double x5 , double x6 , double x7 ) -> double 
                                         { return x1; } ) , 
                               f , f , f , f , f , f , f );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants