-
Notifications
You must be signed in to change notification settings - Fork 3k
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
[QNN EP] Expose device-level session options #19212
Conversation
Thanks! |
Thanks @HectorSVC . I added the keys to both files. |
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.
### Description - Adds the following session options to configure the device: - `soc_model`: The SoC model number. Refer to the QNN SDK documentation for valid values. Defaults to "0" (unknown). - `htp_arch`: The minimum HTP architecture the driver will use to select compatible QNN operators. - `device_id`: The ID of the device to use when setting 'htp_arch'. Defaults to "0" (for single device). ### Motivation and Context Allow more configuration.
Description
soc_model
: The SoC model number. Refer to the QNN SDK documentation for valid values. Defaults to "0" (unknown).htp_arch
: The minimum HTP architecture the driver will use to select compatible QNN operators.device_id
: The ID of the device to use when setting 'htp_arch'. Defaults to "0" (for single device).Motivation and Context
Allow more configuration.