Skip to content

Commit

Permalink
Update on "[executorch][serialization] Move DataSegment into shared c…
Browse files Browse the repository at this point in the history
…ommon.fbs"

So that `DataSegment` can be shared by incoming data.fbs.

Differential Revision: [D65434369](https://our.internmc.facebook.com/intern/diff/D65434369/)

[ghstack-poisoned]
  • Loading branch information
lucylq committed Nov 12, 2024
2 parents 93ce8eb + 7d38580 commit 4f8d9a1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion exir/common_schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@
from dataclasses import dataclass
from enum import IntEnum


# Check exir/common.fbs for explanations of these fields.


class ScalarType(IntEnum):
BYTE = 0
CHAR = 1
Expand Down
2 changes: 1 addition & 1 deletion exir/schema.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@

from executorch.exir.backend.compile_spec_schema import CompileSpec

from executorch.exir.common_schema import ScalarType, DataSegment
from executorch.exir.common_schema import DataSegment, ScalarType


@dataclass
Expand Down

0 comments on commit 4f8d9a1

Please sign in to comment.