Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# gemma.cpp is a lightweight, standalone C++ inference engine for the Gemma
# 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")

package(
Expand Down
3 changes: 3 additions & 0 deletions compression/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Weight compression and analysis.

load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")

package(
default_applicable_licenses = [
"//:license", # Placeholder comment, do not modify
Expand Down
1 change: 1 addition & 0 deletions compression/python/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# [internal] load strict.bzl
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@pybind11_bazel//:build_defs.bzl", "pybind_extension")

package(
Expand Down
2 changes: 2 additions & 0 deletions examples/hello_world/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
load("@rules_cc//cc:cc_binary.bzl", "cc_binary")

# Hello World example frontend to gemma.cpp.
package(
default_applicable_licenses = [
Expand Down
3 changes: 3 additions & 0 deletions examples/simplified_gemma/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -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.
package(
default_applicable_licenses = [
Expand Down
4 changes: 4 additions & 0 deletions io/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# 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(
default_applicable_licenses = [
"//:license", # Placeholder comment, do not modify
Expand Down
3 changes: 3 additions & 0 deletions paligemma/BUILD.bazel
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
load("@rules_cc//cc:cc_library.bzl", "cc_library")
load("@rules_cc//cc:cc_test.bzl", "cc_test")

package(
default_applicable_licenses = [
"//:license", # Placeholder comment, do not modify
Expand Down
Loading