mirror of
https://github.com/google/benchmark.git
synced 2024-11-28 15:34:33 +00:00
bb9aafaa6c
Co-authored-by: Andy Christiansen <achristiansen@google.com>
20 lines
327 B
Python
20 lines
327 B
Python
load("@py_deps//:requirements.bzl", "requirement")
|
|
|
|
py_library(
|
|
name = "gbench",
|
|
srcs = glob(["gbench/*.py"]),
|
|
deps = [
|
|
requirement("numpy"),
|
|
requirement("scipy"),
|
|
],
|
|
)
|
|
|
|
py_binary(
|
|
name = "compare",
|
|
srcs = ["compare.py"],
|
|
python_version = "PY3",
|
|
deps = [
|
|
":gbench",
|
|
],
|
|
)
|