mirror of https://github.com/google/gemma.cpp.git
18 lines
366 B
Python
18 lines
366 B
Python
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
|
|
|
|
package(
|
|
default_applicable_licenses = [
|
|
"//:license", # Placeholder comment, do not modify
|
|
],
|
|
default_visibility = ["//visibility:public"],
|
|
)
|
|
|
|
pybind_extension(
|
|
name = "configs",
|
|
srcs = ["configs.cc"],
|
|
deps = [
|
|
"//:common",
|
|
"//compression:sfp",
|
|
],
|
|
)
|