]> git.proxmox.com Git - ceph.git/blob - ceph/src/jaegertracing/opentelemetry-cpp/third_party/benchmark/tools/BUILD.bazel
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / jaegertracing / opentelemetry-cpp / third_party / benchmark / tools / BUILD.bazel
1 load("@py_deps//:requirements.bzl", "requirement")
2
3 py_library(
4 name = "gbench",
5 srcs = glob(["gbench/*.py"]),
6 deps = [
7 requirement("numpy"),
8 requirement("scipy"),
9 ],
10 )
11
12 py_binary(
13 name = "compare",
14 srcs = ["compare.py"],
15 python_version = "PY2",
16 deps = [
17 ":gbench",
18 ],
19 )