tile/third_party/benchmark/tools/BUILD.bazel

21 lines
359 B
Python
Raw Normal View History

2024-06-11 19:13:30 +08:00
load("@tools_pip_deps//:requirements.bzl", "requirement")
py_library(
name = "gbench",
srcs = glob(["gbench/*.py"]),
deps = [
requirement("numpy"),
requirement("scipy"),
],
)
py_binary(
name = "compare",
srcs = ["compare.py"],
imports = ["."],
python_version = "PY3",
deps = [
":gbench",
],
)