1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
package(
default_visibility = ["//benchmarks:__subpackages__"],
licenses = ["notice"],
)
py_library(
name = "workloads",
srcs = ["__init__.py"],
)
filegroup(
name = "files",
srcs = [
"//benchmarks/workloads/ab:files",
"//benchmarks/workloads/absl:files",
"//benchmarks/workloads/curl:files",
"//benchmarks/workloads/ffmpeg:files",
"//benchmarks/workloads/fio:files",
"//benchmarks/workloads/httpd:files",
"//benchmarks/workloads/iperf:files",
"//benchmarks/workloads/netcat:files",
"//benchmarks/workloads/nginx:files",
"//benchmarks/workloads/node:files",
"//benchmarks/workloads/node_template:files",
"//benchmarks/workloads/redis:files",
"//benchmarks/workloads/redisbenchmark:files",
"//benchmarks/workloads/ruby:files",
"//benchmarks/workloads/ruby_template:files",
"//benchmarks/workloads/sleep:files",
"//benchmarks/workloads/sysbench:files",
"//benchmarks/workloads/syscall:files",
"//benchmarks/workloads/tensorflow:files",
"//benchmarks/workloads/true:files",
],
)
|