Skip to content

Commit 30512a4

Browse files
committed
support NextGen Exynos SoC
-Support Exynos 2600 Signed-off-by: jiseong.oh <jiseong.oh@samsung.com>
1 parent af22f84 commit 30512a4

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

backends/samsung/README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Please prepare the SDK before you start, it is important to code compilation and
1010

1111
### Supported Chipset
1212
- Exynos 2500 (E9955)
13+
- Exynos 2600 (E9965)
1314

1415
### Supported Inference Type
1516
- Quantized (i8/u8/i16/u16)
@@ -67,6 +68,6 @@ cmake --build cmake-android-out/extension/android -j8
6768
```
6869

6970
## Examples
70-
python -m executorch.examples.samsung.aot_compiler --chipset e9955 -m ic3
71+
python -m executorch.examples.samsung.aot_compiler --chipset e9955 (or e9965) -m ic3
7172

7273
Please see this [README.md](../../examples/samsung/README.md).

backends/samsung/serialization/compile_options.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
class SamsungChipset(IntEnum):
2323
UNDEFINED_CHIP_V = 0
2424
E9955 = 9955
25+
E9965 = 9965
2526

2627

2728
@dataclass
@@ -65,7 +66,7 @@ def gen_samsung_backend_compile_spec(
6566
A function to generate an ExecuTorch binary for Samsung Backend.
6667
6768
Attributes:
68-
chipset (str): chipset name in SamsungChipset. For example, E9955 or e9955 both work.
69+
chipset (str): chipset name in SamsungChipset. For example, E9955(E9965) or e9955(e9965) both work.
6970
7071
Returns:
7172
CompileSpec: key is COMPILE_OPTION_SCHEMA_NAME, value is serialization binary of fb schema

0 commit comments

Comments
 (0)