Skip to content
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

[DOC] update coreml new opretors and flags #22958

Merged
merged 20 commits into from
Dec 24, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
update doc
  • Loading branch information
wejoncy committed Dec 16, 2024
commit a66a47321863d8c469892246c2ffff1445c6ecee
2 changes: 1 addition & 1 deletion docs/execution-providers/CoreML-ExecutionProvider.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ For the given model, if caching is not enabled, CoreML EP will compile and save

The cached information for the model is stored under a model hash in the cache directory. There are three ways the hash may be calculated, in order of preference.

1. Read from the model metadata_props. This provides the user a way to directly control the hash, and is the recommended usage. The value must only contain alphanumeric characters.
1. Read from the model metadata_props. This provides the user a way to directly control the hash, and is the recommended usage. The cache key should satisfy that, (1) The value must only contain alphanumeric characters. (2) len(value) < 32. EP will re-hash the cache-key to satisfy these conditions.
2. Hash of the model url the inference session was created with.
3. Hash of the graph inputs and node outputs if the inference session was created with in memory bytes (i.e. there was no model path).

Expand Down
Loading