-
Notifications
You must be signed in to change notification settings - Fork 576
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
Zoltan2: Don't access DualView's [h|d]_view directly #13787
Zoltan2: Don't access DualView's [h|d]_view directly #13787
Conversation
Status Flag 'Pre-Test Inspection' - - This Pull Request Requires Inspection... The code must be inspected by a member of the Team before Testing/Merging |
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.
Looks good to me. Thanks!
@masterleinad Same DCO issue here. |
Signed-off-by: Daniel Arndt <[email protected]>
c8cb10c
to
4f2f753
Compare
Fixed. Sorry, I'm not very used to signing-off on commits. |
No worries :-) |
Status Flag 'Pre-Test Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED by label AT: PRE-TEST INSPECTED! Autotester is Removing Label; this inspection will remain valid until a new commit to source branch is performed. |
Status Flag 'Pull Request AutoTester' - Failure: Job PR_gcc-openmpi-openmp on Jenkins server at https://do.sandia.gov/trilinos-ci Does Not Exist
|
Status Flag 'Pull Request AutoTester' - User Requested Retest - Label AT: RETEST will be reset after testing. |
Status Flag 'Pull Request AutoTester' - Testing Jenkins Projects: Pull Request Auto Testing STARTING (click to expand)Build InformationTest Name: PR_gcc-openmpi-openmp
Jenkins Parameters
Build InformationTest Name: PR_gcc
Jenkins Parameters
Build InformationTest Name: PR_gcc-openmpi_debug
Jenkins Parameters
Build InformationTest Name: PR_clang
Jenkins Parameters
Build InformationTest Name: PR_cuda
Jenkins Parameters
Build InformationTest Name: PR_intel
Jenkins Parameters
Build InformationTest Name: PR_cuda-uvm
Jenkins Parameters
Using Repos:
Pull Request Author: masterleinad |
Status Flag 'Pull Request AutoTester' - Jenkins Testing: all Jobs PASSED Pull Request Auto Testing has PASSED (click to expand)Build InformationTest Name: PR_gcc-openmpi-openmp
Jenkins Parameters
Build InformationTest Name: PR_gcc
Jenkins Parameters
Build InformationTest Name: PR_gcc-openmpi_debug
Jenkins Parameters
Build InformationTest Name: PR_clang
Jenkins Parameters
Build InformationTest Name: PR_cuda
Jenkins Parameters
Build InformationTest Name: PR_intel
Jenkins Parameters
Build InformationTest Name: PR_cuda-uvm
Jenkins Parameters
|
Status Flag 'Pre-Merge Inspection' - SUCCESS: The last commit to this Pull Request has been INSPECTED AND APPROVED by [ egboman cgcgcg ]! |
Status Flag 'Pull Request AutoTester' - AutoMerge IS ENABLED, but the Label AT: AUTOMERGE is not set. Either set Label AT: AUTOMERGE or manually merge the PR... |
Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged |
Cannot Merge Pull Request# 13787: Github Mergeability = blocked; Git Mergeable = True |
Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged |
Cannot Merge Pull Request# 13787: Github Mergeability = blocked; Git Mergeable = True |
Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged |
Cannot Merge Pull Request# 13787: Github Mergeability = blocked; Git Mergeable = True |
Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged |
Cannot Merge Pull Request# 13787: Github Mergeability = blocked; Git Mergeable = True |
Status Flag 'Pull Request AutoTester' - Pull Request will be Automerged |
Merge on Pull Request# 13787: IS A SUCCESS - Pull Request successfully merged |
@trilinos/zoltan2
Motivation
kokkos/kokkos#7716 proposes to deprecate the ability to access
DualView
'sh_view
andd_view
members directly since modifying the allocations can get perturbed theDualView
's internal status. This pull request replaces all places inZoltan2
that use these members directly, in most places, verbatim withview_device
resp.view_host
.Related Issues
Related to kokkos/kokkos#7716.
Signed-off-by: Daniel Arndt [email protected]