gemma.cpp/examples/hello_world/BUILD.bazel

24 lines
538 B
Python

# Hello World example frontend to gemma.cpp.
package(
default_applicable_licenses = [
"//:license", # Placeholder comment, do not modify
],
default_visibility = ["//visibility:public"],
)
cc_binary(
name = "hello_world",
srcs = ["run.cc"],
deps = [
# Placeholder for internal dep, do not remove.,
"//:app",
"//:args",
"//:common",
"//:gemma_lib",
"//:threading",
"//:tokenizer",
"@highway//:hwy",
"@highway//:thread_pool",
],
)