mirror of https://github.com/google/gemma.cpp.git
parent
799c264df3
commit
b56b2f05e4
|
|
@ -1,6 +1,9 @@
|
||||||
# gemma.cpp is a lightweight, standalone C++ inference engine for the Gemma
|
# gemma.cpp is a lightweight, standalone C++ inference engine for the Gemma
|
||||||
# foundation models from Google.
|
# foundation models from Google.
|
||||||
|
|
||||||
|
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
|
||||||
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
||||||
|
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
||||||
load("@rules_license//rules:license.bzl", "license")
|
load("@rules_license//rules:license.bzl", "license")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,8 @@
|
||||||
# Weight compression and analysis.
|
# Weight compression and analysis.
|
||||||
|
|
||||||
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
||||||
|
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_applicable_licenses = [
|
default_applicable_licenses = [
|
||||||
"//:license", # Placeholder comment, do not modify
|
"//:license", # Placeholder comment, do not modify
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
# [internal] load strict.bzl
|
# [internal] load strict.bzl
|
||||||
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
||||||
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
|
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,5 @@
|
||||||
|
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
|
||||||
|
|
||||||
# Hello World example frontend to gemma.cpp.
|
# Hello World example frontend to gemma.cpp.
|
||||||
package(
|
package(
|
||||||
default_applicable_licenses = [
|
default_applicable_licenses = [
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
|
||||||
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
||||||
|
|
||||||
# Hello World example frontend to gemma.cpp.
|
# Hello World example frontend to gemma.cpp.
|
||||||
package(
|
package(
|
||||||
default_applicable_licenses = [
|
default_applicable_licenses = [
|
||||||
|
|
|
||||||
|
|
@ -1,5 +1,9 @@
|
||||||
# File I/O and model loading
|
# File I/O and model loading
|
||||||
|
|
||||||
|
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")
|
||||||
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
||||||
|
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_applicable_licenses = [
|
default_applicable_licenses = [
|
||||||
"//:license", # Placeholder comment, do not modify
|
"//:license", # Placeholder comment, do not modify
|
||||||
|
|
|
||||||
|
|
@ -1,3 +1,6 @@
|
||||||
|
load("@rules_cc//cc:cc_library.bzl", "cc_library")
|
||||||
|
load("@rules_cc//cc:cc_test.bzl", "cc_test")
|
||||||
|
|
||||||
package(
|
package(
|
||||||
default_applicable_licenses = [
|
default_applicable_licenses = [
|
||||||
"//:license", # Placeholder comment, do not modify
|
"//:license", # Placeholder comment, do not modify
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue