-
Notifications
You must be signed in to change notification settings - Fork 56
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
fix(rdma): fi_{send,write}data: do arithmetic on uintptr #558
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
aws-nslick
force-pushed
the
aws-nslick/stack/4
branch
from
September 4, 2024 16:45
179c91f
to
348761d
Compare
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 4, 2024 16:45
58faa00
to
1906685
Compare
This was referenced Sep 4, 2024
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 4, 2024 19:07
1906685
to
8d93f95
Compare
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 4, 2024 19:16
8d93f95
to
af00dd1
Compare
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 4, 2024 20:25
af00dd1
to
54488ee
Compare
aws-nslick
changed the title
rdma: fi_{send,write}data: do arithmetic on uintptr
fix(rdma): fi_{send,write}data: do arithmetic on uintptr
Sep 4, 2024
Merged
rauteric
previously approved these changes
Sep 5, 2024
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 5, 2024 01:56
54488ee
to
232e583
Compare
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 6, 2024 20:32
232e583
to
cdba4c1
Compare
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 8, 2024 19:00
cdba4c1
to
a6c1d0f
Compare
bot:aws:retest |
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 9, 2024 22:18
a6c1d0f
to
9d0c1d5
Compare
void pointer arithmetic is illegal in c++; cast to uintptr, do the offset, then cast to void* to pass to libfabric. stack-info: PR: #558, branch: aws-nslick/stack/5 Signed-off-by: Nicholas Sielicki <nslick@amazon.com>
aws-nslick
force-pushed
the
aws-nslick/stack/5
branch
from
September 10, 2024 17:40
9d0c1d5
to
46b6733
Compare
rauteric
approved these changes
Sep 10, 2024
aws-ofiwg-bot
pushed a commit
to aws-ofiwg-bot/aws-ofi-nccl
that referenced
this pull request
Oct 4, 2024
void pointer arithmetic is illegal in c++; cast to uintptr, do the offset, then cast to void* to pass to libfabric. Signed-off-by: Nicholas Sielicki <nslick@amazon.com>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Stacked PRs:
fix(rdma): fi_{send,write}data: do arithmetic on uintptr
void pointer arithmetic is illegal in c++; cast to uintptr, do the
offset, then cast to void* to pass to libfabric.
Signed-off-by: Nicholas Sielicki nslick@amazon.com