forked from openucx/ucx
-
Notifications
You must be signed in to change notification settings - Fork 0
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
sync #26
Merged
Merged
sync #26
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
- added support of keepalive feature for TCP transport
- If single fragment AM received without UCP_AM_SEND_REPLY flag it should be delivered to the user even if the corresponding rx ep is closed/failed. - If single fragment AM received with UCP_AM_SEND_REPLY flag it should be droppped if the corresponding rx ep is closed/failed, because reply ep can not be provided in the data callback. - If some fragment of multi-fragmented AM received and the corresponding rx ep is closed/failed, this fragment should be dropped regardless of send AM flags (no way to assemble a message without aux info storedd in ep extension) - If AM RTS is received and the corresponding rx ep is closed/failed, this RTS should be droppped and ATS with EP_TIMEOUT should be sent back to the sender.
* Renaming from wfe to wait_mem * Using average of ten performance runs as a reference point * Moving wait_mem to ucp_perf * Code styling fixes Signed-off-by: Pavel Shamis (Pasha) <[email protected]>
UCP/EP/CLOSE: Make close EP discard lanes directly
…heck TEST/TAG: Fix tag test to check inline data flag
JUCX: catch exception on ep close.
GTEST/UCP/TAG: Fix offload thresh check
UCS/ARCH: Add SVE memcpy
GTEST: Moving memory_wait test to perf
IODEMO: add listen retry for server
…daemon-server-loop TOOLS/VFS: Implement mount daemon server loop
…and-expose UCS/VFS: Connect to daemon and expose dummy filesystem
UCP/CORE: Remove unused pending queue
In order to catch cuda memory events even when Cuda is statically linked, use bistro.
JENKINS: test CM's fallback in client-server testing
Make memory hooks work with static libcudart, by using bistro hooks for cuda driver API
UCP/WORKER: Fix mis-spelling
UCT/IB/MLX5: DV UAR alloc type NC support
…-req UCP/EP: set callback on close request.
Allows passing Cuda -L<path> flag to static build example, without passing -lcudart.
JUCX: add request status field.
test_sockaddr.cc - NEGATIVE_RETURNS - "index" is passed to a parameter that cannot be negative. [Note: The source code implementation of the function has been overridden by a builtin model.] uct_cm.c - PRINTF_ARGS - Argument "self->iface" to format specifier "%p" was expected to have pointer type but has type "struct uct_base_iface". ucp_hello_world.c - USE_AFTER_FREE - Dereferencing freed pointer "msg" wireup_cm.c - USE_AFTER_FREE - Passing freed pointer "conn_request" as an argument to "ucs_log_dispatch" ("uct_listener_reject" frees "conn_request".).
UCP/WIREUP: Allow EP check during WIREUP phase
…rt-static-is CUDA/TEST: Check if libcudart_static is present for memory hook test
UCP/UCT/TEST/EXAMPLES: Fix several coverity issues.
Get device/vendor ids of SF from its parent PCI
UCS/DATASTRUCT: Add allow_list data struct
Merged
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.
What
Describe what this PR is doing.
Why ?
Justification for the PR. If there is existing issue/bug please reference. For
bug fixes why and what can be merged in a single item.
How ?
It is optional but for complex PRs please provide information about the design,
architecture, approach, etc.