-
Notifications
You must be signed in to change notification settings - Fork 130
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
Added functionality to choose dml adapter by luid #1041
Merged
baijumeswani
merged 2 commits into
microsoft:main
from
DavitGrigoryan132:directml_luid_device_selection
Nov 22, 2024
Merged
Added functionality to choose dml adapter by luid #1041
baijumeswani
merged 2 commits into
microsoft:main
from
DavitGrigoryan132:directml_luid_device_selection
Nov 22, 2024
+64
−10
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
Thank you for this contribution. Can you please add a test/tests for the new functionality? |
This should be reviewed by the DML team. |
DavitGrigoryan132
force-pushed
the
directml_luid_device_selection
branch
from
November 7, 2024 23:09
8ceb706
to
691d9e3
Compare
DavitGrigoryan132
force-pushed
the
directml_luid_device_selection
branch
from
November 8, 2024 11:58
691d9e3
to
329214d
Compare
DavitGrigoryan132
force-pushed
the
directml_luid_device_selection
branch
from
November 12, 2024 07:12
329214d
to
0c9aef8
Compare
DavitGrigoryan132
force-pushed
the
directml_luid_device_selection
branch
from
November 18, 2024 11:54
6fe9e87
to
c15cc48
Compare
@pranavsharma @PatriceVignola Can you review it, please? |
DavitGrigoryan132
force-pushed
the
directml_luid_device_selection
branch
from
November 19, 2024 08:59
c15cc48
to
249b939
Compare
PatriceVignola
approved these changes
Nov 21, 2024
baijumeswani
approved these changes
Nov 22, 2024
Thanks for your contribution @DavitGrigoryan132 :) |
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.
Description: This PR adds functionality to allow users to specify a "DML" (DirectML) execution provider device adapter by providing the adapter's LUID (Locally Unique Identifier). Previously, the system would automatically select the most performant adapter by default. With this enhancement, users can now select a specific adapter by passing the luid_high_part and luid_low_part options, giving them greater control over device selection.
Key Changes:
Added support for selecting a DML execution provider device adapter using luid_high_part and luid_low_part.
Default behavior remains the same, choosing the most performant adapter unless these options are specified.
Motivation: This update provides more flexibility for users needing to target specific adapters, enhancing customizability in environments with multiple available adapters.
#1029