-
Notifications
You must be signed in to change notification settings - Fork 131
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
Code enhancements #1429
Open
PJAvinash
wants to merge
31
commits into
ROCm:develop
Choose a base branch
from
PJAvinash:CODE_ENHANCEMENTS
base: develop
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+8
−6
Open
Code enhancements #1429
Changes from 30 commits
Commits
Show all changes
31 commits
Select commit
Hold shift + click to select a range
71f5680
Initial commit for testing
PJAvinash 39f0cb0
Fix memory leak in checkOptions
PJAvinash 87fe181
Fix memory leak in checkOption
PJAvinash e460625
x
PJAvinash 7c21e4c
Delete cmake-3.28.2-linux-x86_64.sh
PJAvinash 41026f4
gcn changes
PJAvinash 6b34cef
Merge branch 'MEM_LEAK_FIXES' of https://github.com/PJAvinash/rccl in…
PJAvinash 4e5776d
gcn memleak fixes
PJAvinash 0537ffe
gcn leak fix
PJAvinash 1c95f27
memory leak fixes for parseRome4P2H and ncclTopoAddGPU
PJAvinash be00579
Merge pull request #1 from PJAvinash/MEM_LEAK_FIXES
PJAvinash 9f49cc4
Keeping only necessary file for fixes
PJAvinash c62d7bd
Merge branch 'ROCm:develop' into develop
PJAvinash e0ce29c
changing to GCN_ARCH_NAME_LEN
PJAvinash 837e473
Added sanity check directory
PJAvinash 4adb7b9
refactoring scripts
i-chaochen 1d6eda0
Merge branch 'ROCm:develop' into develop
PJAvinash 0face6b
Merge branch 'ROCm:develop' into develop
PJAvinash 0224efd
Updated to sanity checks folder
i-chaochen e07278b
Initial fixes
PJAvinash a637d89
Merge branch 'ROCm:develop' into MEM_LEAK_TEST_TOOLS
PJAvinash d8a142d
Merge branch 'ROCm:develop' into develop
PJAvinash faa1840
changes in tools
PJAvinash d319267
Merge branch 'ROCm:develop' into develop
PJAvinash 0461beb
Merge branch 'ROCm:develop' into MEM_LEAK_TEST_TOOLS
PJAvinash 450765b
Merge pull request #2 from PJAvinash/MEM_LEAK_TEST_TOOLS
PJAvinash fae9c89
pointing RCCL lib build to debug version
PJAvinash 949c0e3
Removed second pthread_detach
PJAvinash 48d5928
Removing sanity checks
PJAvinash ac1c396
Keeping only code changes
PJAvinash 8c08de7
Merge branch 'ROCm:develop' into CODE_ENHANCEMENTS
PJAvinash File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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.
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.
Why removing pthread_detach? This was added to fix a memory leak issue.
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.
pthread_detach() is being called twice with same parameter, first time at line 486, second call will simply return -1 and it is not being checked, and has no effect.