We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
The tools currently initialise the event set by using
Kokkos::Tools::Experimental::EventSet my_event_set; memset(&my_event_set, 0, sizeof(my_event_set)); // zero any pointers not set here
As @dalg24 had pointed out in
it may be better to initialise the event set by another form of initialisation.
It seems the event set is an aggregate. If we want to initialise it like
EventSet my_event_set{};
two questions are:
NULL
nullptr
char*
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The tools currently initialise the event set by using
As @dalg24 had pointed out in
it may be better to initialise the event set by another form of initialisation.
It seems the event set is an aggregate. If we want to initialise it like
two questions are:
NULL
ornullptr
) to the function pointers in the struct?char*
?The text was updated successfully, but these errors were encountered: