diff --git a/backends/samsung/README.md b/backends/samsung/README.md index fcb7ef84b75..bc48bad830a 100644 --- a/backends/samsung/README.md +++ b/backends/samsung/README.md @@ -10,6 +10,7 @@ Please prepare the SDK before you start, it is important to code compilation and ### Supported Chipset - Exynos 2500 (E9955) +- Exynos 2600 (E9965) ### Supported Inference Type - Quantized (i8/u8/i16/u16) @@ -67,6 +68,6 @@ cmake --build cmake-android-out/extension/android -j8 ``` ## Examples -python -m executorch.examples.samsung.aot_compiler --chipset e9955 -m ic3 +python -m executorch.examples.samsung.aot_compiler --chipset e9955 (or e9965) -m ic3 Please see this [README.md](../../examples/samsung/README.md). diff --git a/backends/samsung/serialization/compile_options.py b/backends/samsung/serialization/compile_options.py index a4af40368e9..4a12c284b63 100644 --- a/backends/samsung/serialization/compile_options.py +++ b/backends/samsung/serialization/compile_options.py @@ -22,6 +22,7 @@ class SamsungChipset(IntEnum): UNDEFINED_CHIP_V = 0 E9955 = 9955 + E9965 = 9965 @dataclass @@ -65,7 +66,7 @@ def gen_samsung_backend_compile_spec( A function to generate an ExecuTorch binary for Samsung Backend. Attributes: - chipset (str): chipset name in SamsungChipset. For example, E9955 or e9955 both work. + chipset (str): chipset name in SamsungChipset. For example, E9955(E9965) or e9955(e9965) both work. Returns: CompileSpec: key is COMPILE_OPTION_SCHEMA_NAME, value is serialization binary of fb schema diff --git a/docs/source/backends/samsung/samsung-overview.md b/docs/source/backends/samsung/samsung-overview.md index f2f7dcd45a6..891cb3fbc0b 100644 --- a/docs/source/backends/samsung/samsung-overview.md +++ b/docs/source/backends/samsung/samsung-overview.md @@ -18,6 +18,7 @@ Currently, the Samsung Exynos backend is supported only for devices with the following chipsets: - Exynos 2500 (E9955) +- Exynos 2600 (E9965) ## Development Requirements diff --git a/docs/source/backends/samsung/samsung-partitioner.md b/docs/source/backends/samsung/samsung-partitioner.md index eb84a795551..a43e5e1cf41 100644 --- a/docs/source/backends/samsung/samsung-partitioner.md +++ b/docs/source/backends/samsung/samsung-partitioner.md @@ -25,5 +25,5 @@ et_program = to_edge_transform_and_lower( ).to_executorch() ``` -At the moment, only `"E9955"` is supported as a valid chipset name, which corresponds to -the Exynose 2500 SoC. Support for additional chipsets will be added in the future. +At the moment, only `"E9955"` and `"E9965"` are supported as a valid chipset name, which corresponds to +the Exynose 2500 and Exynos 2600 SoC. Support for additional chipsets will be added in the future.