-
Notifications
You must be signed in to change notification settings - Fork 940
Arm backend: Add Ethos-U65 support to the arm_aot_compiler.py #18939
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
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 |
|---|---|---|
|
|
@@ -48,7 +48,7 @@ def _default_system_config_and_memory_mode( | |
| return resolved_system_config, resolved_memory_mode | ||
| if "ethos-u65" in target_lower: | ||
| resolved_system_config = ( | ||
| "Ethos_U65_SYS_DRAM_Mid" if system_config is None else system_config | ||
| "Ethos_U65_High_End" if system_config is None else system_config | ||
| ) | ||
| resolved_memory_mode = "Sram_Only" if memory_mode is None else memory_mode | ||
|
Comment on lines
49
to
53
|
||
| return resolved_system_config, resolved_memory_mode | ||
|
|
||
| Original file line number | Diff line number | Diff line change | ||||
|---|---|---|---|---|---|---|
|
|
@@ -452,6 +452,8 @@ def forward(self, x): | |||||
| "ethos-u55-64", | ||||||
| "ethos-u55-128", | ||||||
| "ethos-u55-256", | ||||||
| "ethos-u65-256", | ||||||
| "ethos-u65-512", | ||||||
| "ethos-u85-128", | ||||||
| "ethos-u85-256", | ||||||
| "ethos-u85-512", | ||||||
|
|
@@ -628,13 +630,13 @@ def _get_args(): | |||||
| "--system_config", | ||||||
| required=False, | ||||||
| default=None, | ||||||
| help="System configuration to select from the Vela configuration file (see vela.ini). This option must match the selected target, default is for an optimal system 'Ethos_U55_High_End_Embedded'/'Ethos_U85_SYS_DRAM_High'", | ||||||
| help="System configuration to select from the Vela configuration file (see vela.ini). This option must match the selected target, default is for an optimal system 'Ethos_U55_High_End_Embedded'/ 'Ethos_U65_High_End' / 'Ethos_U85_SYS_DRAM_Mid'", | ||||||
|
||||||
| help="System configuration to select from the Vela configuration file (see vela.ini). This option must match the selected target, default is for an optimal system 'Ethos_U55_High_End_Embedded'/ 'Ethos_U65_High_End' / 'Ethos_U85_SYS_DRAM_Mid'", | |
| help="System configuration to select from the Vela configuration file (see vela.ini). This option must match the selected target. Defaults for optimal systems are: Ethos-U55: 'Ethos_U55_High_End_Embedded'; Ethos-U65: 'Ethos_U65_High_End'; Ethos-U85: 'Ethos_U85_SYS_DRAM_Mid'.", |
Uh oh!
There was an error while loading. Please reload this page.