-
Notifications
You must be signed in to change notification settings - Fork 4
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
Fixes for some nvcc versions #292
Conversation
Was this the only change needed for the offsite builds? I thought that =default was supposed to create both host and device default versions. I'm surprised that these are the only ones... |
@liu15 Yes, this only happened on offsite builds. I am not totally sure why, it may even be a compiler problem. But the error occurred during capture of care objects in raja loops. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
|
* Explicitly define default and copy constructor for the portable specialization of host_device_map
Sometimes nvcc won't generate constructors/assignment operators when
= default
is used. The workaround is to explicitly define them.