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

generalize get_iterator_value() to respect execution policy #701

Open
3gx opened this issue May 2, 2016 · 8 comments
Open

generalize get_iterator_value() to respect execution policy #701

3gx opened this issue May 2, 2016 · 8 comments
Assignees
Labels
thrust For all items related to Thrust.

Comments

@3gx
Copy link

3gx commented May 2, 2016

Unless it is a raw pointers, get_value_iterator [1] will not respect execution policy when dereferenced via *it. A naïve replacement of *it with

typename thrust::iterator_traits<Iterator>::value_type value;
thrust::copy(exec, it,it+1, &value); 
return value; 

makes the reproducer in NVIDIA/thrust#780 to die with

terminate called after throwing an instance of 'thrust::system::system_error'
  what():  an illegal memory access was encountered
Aborted (core dumped)

[1] https://github.com/thrust/thrust/blob/master/thrust/detail/get_iterator_value.h#L29

@3gx 3gx self-assigned this May 2, 2016
@jaredhoberock
Copy link

I think incorporating the cross_system policy into the policy passed to thrust::copy might make your implementation work. The idea would be to use cpp::tag as one of the systems, and the user-provided execution policy as the other system. In this scenario, cpp::tag essentially communicates that &value lives on the stack.

@3gx
Copy link
Author

3gx commented May 3, 2016

cross_system is cuda specific, wouldn't it then be better to have a generic get_value_iterator implementation which dereferences iterator in an usual way *f, and cuda customisation which constructs cross_system and invoke thrust::copy with it? This will make get_value_iteratorbackend specific, which is not unreasonable.

@jaredhoberock
Copy link

We shouldn't make get_iterator_value() backend-specific. We already have thrust::copy(), which is backend-specific. We just need to figure out how to use it correctly for this problem. I'll keep thinking about it.

@3gx
Copy link
Author

3gx commented May 3, 2016

get_value is backend specific. Why can't same argument that made get_value backend specific be applied to get_iterator_vale ?

@jaredhoberock
Copy link

get_value() is an essential customization point to deal with remote memories. It has to exist in order for backends like CUDA to work at all. get_iterator_value() is just an application of thrust::copy().

I think we just need to figure out why the straightforward application of thrust::copy() makes your reproducer crash and solve that problem.

@jaredhoberock
Copy link

This implementation of get_iterator_value() makes the reproducer given in NVIDIA/thrust#780's work on my system:

template<typename DerivedPolicy, typename Iterator>
__host__ __device__
typename thrust::iterator_traits<Iterator>::value_type
get_iterator_value(thrust::execution_policy<DerivedPolicy>& exec, Iterator it)
{
  typename thrust::iterator_traits<Iterator>::value_type result;

  // treat &result as a cpp system iterator
  thrust::cpp::tag system2;

  thrust::copy(select_system(thrust::detail::derived_cast(thrust::detail::strip_const(exec)), thrust::detail::derived_cast(thrust::detail::strip_const(system2))), it, it + 1, &result);

  return result;
} // get_iterator_value(exec,Iterator);

The idea is that select_system finds the cross_system thing and tells the CUDA backend where &result lives.

@3gx
Copy link
Author

3gx commented May 3, 2016

What is the purpose of thrust::detail::strip_const?

@jaredhoberock
Copy link

Huh, I also discovered the function detail::two_system_copy_n()

Probably you just want to use that directly instead of thrust::copy().

@brycelelbach brycelelbach assigned brycelelbach and unassigned 3gx Sep 15, 2017
@jrhemstad jrhemstad added the thrust For all items related to Thrust. label Feb 22, 2023
@github-project-automation github-project-automation bot moved this to Todo in CCCL Nov 8, 2023
@jarmak-nv jarmak-nv transferred this issue from NVIDIA/thrust Nov 8, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
thrust For all items related to Thrust.
Projects
Status: Todo
Development

No branches or pull requests

4 participants