No ippl class
All threads resolved!
All threads resolved!
Remove the class Ippl
and replace with global initialize
and finalize
functions. This way we get rid of the static variables.
Old initialisaton:
int main(int argc, char* argv[]) {
Ippl ippl(argc, argv);
// some code
}
New initialisation:
int main(int argc, char* argv[]) {
ippl::initialize(argc, argv);
{
// some code
}
ippl::finalize();
}
Edited by frey_m
Merge request reports
Activity
Filter activity
added Enhancement label
added Cleanup label
added 1 commit
- dc97e7bb - put into scope to avoid Kokkos deallocation error
requested review from @muralikrishnan
added 3 commits
-
dc97e7bb...7f802d8f - 2 commits from branch
master
- 439c2a11 - Merge branch 'master' of gitlab.psi.ch:OPAL/Libraries/ippl into no-ippl-class
-
dc97e7bb...7f802d8f - 2 commits from branch
- Resolved by frey_m
mentioned in commit 8b1acc9d
mentioned in merge request !185 (merged)
mentioned in commit 1fc8eaa0
mentioned in issue #163 (closed)
Please register or sign in to reply