the-algorithm/ann/src/main/scala/com/twitter/ann/experimental/BUILD.bazel
twitter-team ef4c5eb65e Twitter Recommendation Algorithm
Please note we have force-pushed a new initial commit in order to remove some publicly-available Twitter user information. Note that this process may be required in the future.
2023-03-31 17:36:31 -05:00

30 lines
741 B
Python

scala_library(
name = "server",
sources = ["*.scala"],
compiler_option_sets = ["fatal_warnings"],
platform = "java8",
tags = ["bazel-only"],
dependencies = [
"ann/src/main/scala/com/twitter/ann/annoy",
"ann/src/main/scala/com/twitter/ann/brute_force",
"ann/src/main/scala/com/twitter/ann/common",
"ann/src/main/scala/com/twitter/ann/hnsw",
],
)
hadoop_binary(
name = "benchmarking",
basename = "benchmarking",
main = "com.twitter.ann.experimental.Runner",
platform = "java8",
runtime_platform = "java8",
tags = [
"bazel-compatible",
"bazel-compatible:migrated",
"bazel-only",
],
dependencies = [
":server",
],
)