-
Notifications
You must be signed in to change notification settings - Fork 1.2k
feat: export deviceToExecutionProviders and getSupportedDevices #1646
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -55,6 +55,9 @@ export { random } from './utils/random.js'; | |
|
|
||
| export { DynamicCache } from './cache_utils.js'; | ||
|
|
||
| // Device utilities | ||
| export { deviceToExecutionProviders, getSupportedDevices } from './backends/onnx.js'; | ||
|
Collaborator
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This adds runtime exports from the package entry point, but the checked-in generated declaration files are not updated. TypeScript consumers importing the new public API from |
||
|
|
||
| // Cache and file management | ||
| export { ModelRegistry } from './utils/model_registry/ModelRegistry.js'; | ||
|
|
||
|
|
||
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.
Now that
deviceToExecutionProvidersis exported publicly, returningsupportedDevicesdirectly fordevice === "auto"exposes mutable internal state:A caller can accidentally or intentionally mutate the returned array, for example
deviceToExecutionProviders('auto').length = 0, which changes the library's internal device order for later calls.getSupportedDevices()already avoids this by returning[...supportedDevices]; this path should do the same or otherwise return an immutable copy.