Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
3 changes: 2 additions & 1 deletion backends/samsung/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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).
3 changes: 2 additions & 1 deletion backends/samsung/serialization/compile_options.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
class SamsungChipset(IntEnum):
UNDEFINED_CHIP_V = 0
E9955 = 9955
E9965 = 9965


@dataclass
Expand Down Expand Up @@ -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
Expand Down
1 change: 1 addition & 0 deletions docs/source/backends/samsung/samsung-overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions docs/source/backends/samsung/samsung-partitioner.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading