File tree Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Expand file tree Collapse file tree 4 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,7 @@ def define_common_targets():
45
45
"-DC10_USING_CUSTOM_GENERATED_MACROS" ,
46
46
],
47
47
visibility = [
48
- "//executorch/runtime/core/portable_type/ ..." ,
48
+ "//executorch/..." ,
49
49
],
50
50
deps = select ({
51
51
"DEFAULT" : [],
Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ def define_common_targets():
11
11
srcs = ["bfloat16_test.cpp" ],
12
12
deps = [
13
13
"//executorch/runtime/core/portable_type:portable_type" ,
14
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
14
15
],
15
16
)
16
17
@@ -52,5 +53,6 @@ def define_common_targets():
52
53
deps = [
53
54
"//executorch/runtime/core/exec_aten/util:tensor_util" ,
54
55
"//executorch/runtime/core/portable_type:portable_type" ,
56
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
55
57
],
56
58
)
Original file line number Diff line number Diff line change @@ -50,6 +50,7 @@ def define_common_targets():
50
50
],
51
51
exported_preprocessor_flags = get_core_flags (),
52
52
exported_deps = [
53
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
53
54
"//executorch/runtime/platform:platform" ,
54
55
],
55
56
)
@@ -73,6 +74,7 @@ def define_common_targets():
73
74
],
74
75
exported_deps = [
75
76
":core" ,
77
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
76
78
],
77
79
visibility = [
78
80
"//executorch/..." ,
@@ -145,13 +147,16 @@ def define_common_targets():
145
147
":tensor_layout" ,
146
148
],
147
149
)
148
-
150
+
149
151
runtime .cxx_library (
150
152
name = "tensor_layout" ,
151
153
srcs = ["tensor_layout.cpp" ],
152
154
exported_headers = ["tensor_layout.h" ],
155
+ deps = [
156
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
157
+ ],
153
158
exported_deps = [
154
- ":core" ,
159
+ ":core" ,
155
160
"//executorch/runtime/core/exec_aten:lib" ,
156
161
],
157
162
visibility = ["//executorch/..." ],
Original file line number Diff line number Diff line change @@ -40,6 +40,7 @@ def define_common_targets():
40
40
],
41
41
deps = [
42
42
"//executorch/runtime/core:event_tracer" ,
43
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
43
44
],
44
45
)
45
46
@@ -68,6 +69,7 @@ def define_common_targets():
68
69
],
69
70
deps = [
70
71
"//executorch/runtime/core:memory_allocator" ,
72
+ "//executorch/runtime/core/portable_type/c10/c10:c10" ,
71
73
],
72
74
)
73
75
You can’t perform that action at this time.
0 commit comments