Skip to content

Commit b894783

Browse files
committed
Update on "[executorch][serialization] Rename scalar_type.fbs --> common.fbs"
Allow us to add other shared flatbuffer types into `common.fbs`. - Rename scalar_type.fbs --> common.fbs - Rename scalar_type.py --> common_schema.py (differentiate from exir/common.py) Differential Revision: [D65442256](https://our.internmc.facebook.com/intern/diff/D65442256/) [ghstack-poisoned]
2 parents bbf4780 + 4399f47 commit b894783

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

exir/TARGETS

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -40,19 +40,20 @@ python_library(
4040
],
4141
)
4242

43-
# Deprecated in ExecuTorch v0.5
4443
python_library(
45-
name = "scalar_type",
44+
name = "common_schema",
4645
srcs = [
47-
"scalar_type.py",
46+
"common_schema.py",
4847
],
4948
)
5049

50+
# Deprecated in ExecuTorch v0.5
5151
python_library(
52-
name = "common_schema",
52+
name = "scalar_type",
5353
srcs = [
54-
"common_schema.py",
54+
"scalar_type.py",
5555
],
56+
deps = [":common_schema"],
5657
)
5758

5859
python_library(

0 commit comments

Comments
 (0)