mirror of https://github.com/google/gemma.cpp.git
21 lines
442 B
Python
21 lines
442 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 = [
|
|
"//:args",
|
|
"//:gemma_args",
|
|
"//:gemma_lib",
|
|
"//:threading_context",
|
|
"//:tokenizer",
|
|
"@highway//:hwy",
|
|
],
|
|
)
|