File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -95,11 +95,8 @@ runtime.command_alias(
95
95
)
96
96
97
97
runtime.python_library(
98
- name = "export_library ",
98
+ name = "source_transformation ",
99
99
srcs = [
100
- "export_llama.py",
101
- "export_llama_lib.py",
102
- "model.py",
103
100
"source_transformation/apply_spin_quant_r1_r2.py",
104
101
"source_transformation/attention.py",
105
102
"source_transformation/lora.py",
@@ -114,6 +111,15 @@ runtime.python_library(
114
111
"source_transformation/vulkan_rope.py",
115
112
"source_transformation/attention_sink.py",
116
113
],
114
+ )
115
+
116
+ runtime.python_library(
117
+ name = "export_library",
118
+ srcs = [
119
+ "export_llama.py",
120
+ "export_llama_lib.py",
121
+ "model.py",
122
+ ],
117
123
_is_external_target = True,
118
124
base_module = "executorch.examples.models.llama",
119
125
visibility = [
@@ -123,6 +129,7 @@ runtime.python_library(
123
129
"@EXECUTORCH_CLIENTS",
124
130
],
125
131
deps = [
132
+ ":source_transformation",
126
133
"//ai_codesign/gen_ai/fast_hadamard_transform:fast_hadamard_transform",
127
134
"//caffe2:torch",
128
135
"//executorch/backends/vulkan/_passes:vulkan_passes",
You can’t perform that action at this time.
0 commit comments