/aosp_15_r20/external/executorch/exir/tests/ |
H A D | test_remove_view_copy.py | 13 from executorch.exir.capture._config import ExecutorchBackendConfig 49 config=ExecutorchBackendConfig( 71 config=ExecutorchBackendConfig( 79 config=ExecutorchBackendConfig( 102 config=ExecutorchBackendConfig(
|
H A D | test_memory_planning.py | 16 from executorch.exir import ExecutorchBackendConfig, to_edge 500 exir.ExecutorchBackendConfig( 558 config=ExecutorchBackendConfig( 578 config=ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/exir/backend/test/ |
H A D | test_backends.py | 157 config=exir.ExecutorchBackendConfig( 256 config=exir.ExecutorchBackendConfig( 311 config=exir.ExecutorchBackendConfig( 382 config=exir.ExecutorchBackendConfig( 545 config=exir.ExecutorchBackendConfig( 616 config=exir.ExecutorchBackendConfig( 628 config=exir.ExecutorchBackendConfig( 739 config=exir.ExecutorchBackendConfig( 756 config=exir.ExecutorchBackendConfig( 858 config=exir.ExecutorchBackendConfig( [all …]
|
H A D | test_backends_lifted.py | 178 config=exir.ExecutorchBackendConfig( 273 config=exir.ExecutorchBackendConfig( 322 config=exir.ExecutorchBackendConfig( 387 config=exir.ExecutorchBackendConfig( 542 config=exir.ExecutorchBackendConfig( 613 config=exir.ExecutorchBackendConfig( 624 config=exir.ExecutorchBackendConfig( 737 config=exir.ExecutorchBackendConfig( 753 config=exir.ExecutorchBackendConfig( 849 config=exir.ExecutorchBackendConfig( [all …]
|
/aosp_15_r20/external/executorch/exir/program/ |
H A D | _program.py | 21 from executorch.exir.capture._config import EdgeCompileConfig, ExecutorchBackendConfig 416 config: Optional[ExecutorchBackendConfig] = None, argument 420 config = config or ExecutorchBackendConfig() 648 config: ExecutorchBackendConfig, name: Optional[str] = None argument 656 default_pass = ExecutorchBackendConfig().sym_shape_eval_pass 683 config: ExecutorchBackendConfig, name: Optional[str] = None argument 1301 config: Optional[ExecutorchBackendConfig] = None, argument 1314 config = config if config else ExecutorchBackendConfig() 1341 name, ExecutorchBackendConfig().memory_planning_pass 1379 backend_config: Optional[ExecutorchBackendConfig] = None, argument [all …]
|
/aosp_15_r20/external/executorch/examples/apple/mps/scripts/ |
H A D | mps_example.py | 30 from executorch.exir.capture._config import ExecutorchBackendConfig 186 config=ExecutorchBackendConfig(extract_delegate_segments=False) 196 ).to_executorch(config=ExecutorchBackendConfig(extract_delegate_segments=False))
|
/aosp_15_r20/external/executorch/exir/program/test/ |
H A D | test_program.py | 14 from executorch.exir import EdgeCompileConfig, ExecutorchBackendConfig 265 ExecutorchBackendConfig( 452 delegate_manager.to_executorch(ExecutorchBackendConfig()) 460 delegate_manager.to_executorch(ExecutorchBackendConfig()) 505 ExecutorchBackendConfig( 517 ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/backends/xnnpack/utils/ |
H A D | configs.py | 30 ) -> exir.ExecutorchBackendConfig: 32 return exir.ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/test/models/ |
H A D | generate_linear_out_bundled_program.py | 25 from executorch.exir import ExecutorchBackendConfig, to_edge 41 config=ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/examples/portable/scripts/ |
H A D | export.py | 14 from executorch.exir.capture import EdgeCompileConfig, ExecutorchBackendConfig 65 backend_config = ExecutorchBackendConfig()
|
/aosp_15_r20/external/executorch/backends/apple/mps/test/ |
H A D | test_mps_utils.py | 23 from executorch.exir.capture._config import ExecutorchBackendConfig 242 config=ExecutorchBackendConfig(extract_delegate_segments=False) 259 config=ExecutorchBackendConfig(extract_delegate_segments=False)
|
/aosp_15_r20/external/executorch/examples/xnnpack/ |
H A D | aot_compiler.py | 20 ExecutorchBackendConfig, 110 config=ExecutorchBackendConfig(extract_delegate_segments=False)
|
/aosp_15_r20/external/executorch/examples/qualcomm/scripts/ |
H A D | export_example.py | 18 from executorch.exir.capture._config import ExecutorchBackendConfig 94 config=ExecutorchBackendConfig(extract_delegate_segments=False)
|
/aosp_15_r20/external/executorch/extension/export_util/ |
H A D | export_hf_model.py | 13 from executorch.exir import EdgeCompileConfig, ExecutorchBackendConfig, to_edge 107 .to_executorch(ExecutorchBackendConfig(extract_delegate_segments=True))
|
/aosp_15_r20/external/executorch/extension/pybindings/test/ |
H A D | make_test.py | 14 from executorch.exir import ExecutorchBackendConfig, ExecutorchProgramManager, to_edge 89 et_config: Optional[ExecutorchBackendConfig] = None, argument 287 et_config=ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/docs/source/tutorials_source/ |
H A D | export-to-executorch-tutorial.py | 520 from executorch.exir import ExecutorchBackendConfig, ExecutorchProgramManager 524 ExecutorchBackendConfig( 585 ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/examples/apple/coreml/scripts/ |
H A D | inspector_utils.py | 32 ExecutorchBackendConfig, 81 _EDGE_BACKEND_CONFIG = exir.ExecutorchBackendConfig( 127 config: ExecutorchBackendConfig, argument
|
H A D | export.py | 111 ).to_executorch(config=exir.ExecutorchBackendConfig(extract_delegate_segments=True)) 182 config=exir.ExecutorchBackendConfig(extract_delegate_segments=True)
|
/aosp_15_r20/external/executorch/test/end2end/ |
H A D | exported_module.py | 17 from executorch.exir import ExecutorchBackendConfig, ExecutorchProgramManager, to_edge 201 ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/examples/xnnpack/quantization/ |
H A D | example.py | 16 from executorch.exir.capture._config import ExecutorchBackendConfig 196 config=ExecutorchBackendConfig(extract_delegate_segments=False)
|
/aosp_15_r20/external/executorch/examples/qualcomm/qaihub_scripts/llama/llama2/ |
H A D | qaihub_llama2_7b.py | 14 ExecutorchBackendConfig, 86 backend_config=ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/examples/qualcomm/qaihub_scripts/llama/llama3/ |
H A D | qaihub_llama3_8b.py | 15 ExecutorchBackendConfig, 87 backend_config=ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/examples/models/llava/ |
H A D | export_llava.py | 30 ExecutorchBackendConfig, 231 ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/examples/qualcomm/qaihub_scripts/stable_diffusion/ |
H A D | qaihub_stable_diffusion.py | 18 ExecutorchBackendConfig, 385 backend_config=ExecutorchBackendConfig(
|
/aosp_15_r20/external/executorch/exir/capture/ |
H A D | __init__.py | 18 ExecutorchBackendConfig,
|