File tree 1 file changed +51
-0
lines changed
1 file changed +51
-0
lines changed Original file line number Diff line number Diff line change @@ -114,3 +114,54 @@ cc_binary(
114
114
"//:thread_pool" ,
115
115
],
116
116
)
117
+
118
+ # copybara:strip_begin
119
+ cc_binary (
120
+ name = "run_csv" ,
121
+ srcs = [
122
+ "run_csv.cc" ,
123
+ ],
124
+ deps = [
125
+ ":app" ,
126
+ ":args" ,
127
+ ":gemma_lib" ,
128
+ "//compression:compress" ,
129
+ # copybara:import_next_line:hwy
130
+ "//:hwy" ,
131
+ # copybara:import_next_line:hwy
132
+ "//:nanobenchmark" ,
133
+ # copybara:import_next_line:hwy
134
+ "//:profiler" ,
135
+ # copybara:import_next_line:hwy
136
+ "//:thread_pool" ,
137
+ "//third_party/riegeli/bytes:file_reader" ,
138
+ "//third_party/riegeli/bytes:file_writer" ,
139
+ "//third_party/riegeli/csv:csv_reader" ,
140
+ "//third_party/riegeli/csv:csv_writer" ,
141
+ ],
142
+ )
143
+
144
+ gensignature (
145
+ name = "gemma_sign" ,
146
+ srcs = [":gemma" ],
147
+ )
148
+
149
+ cc_test (
150
+ name = "benchmarks" ,
151
+ size = "large" ,
152
+ srcs = [
153
+ "benchmarks.cc" ,
154
+ ],
155
+ tags = ["notap" ],
156
+ deps = [
157
+ ":app" ,
158
+ ":gemma_lib" ,
159
+ "//third_party/benchmark" ,
160
+ # copybara:import_next_line:hwy
161
+ "//:hwy" ,
162
+ # copybara:import_next_line:hwy
163
+ "//:thread_pool" ,
164
+ ],
165
+ )
166
+
167
+ # copybara:strip_end
You can’t perform that action at this time.
0 commit comments