mirror of
https://github.com/google/benchmark.git
synced 2024-11-27 02:44:34 +00:00
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 = "PY2",
|
||
|
deps = [
|
||
|
":gbench",
|
||
|
],
|
||
|
)
|