Skip to content

Commit 9049ffe

Browse files
authored
Merge pull request #14 from a41-official/test/add-ntt-benchmark
test: add NTT benchmark
2 parents c606314 + 0e6a1fa commit 9049ffe

25 files changed

+1684
-482
lines changed

.clang-format

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ AlwaysBreakTemplateDeclarations: Yes
88
# This specifies how pointers should be formatted in the code.
99
# When this option is set to true, it means that the asterisk (*) used
1010
# to declare a pointer will be bound to the type rather than the variable name.
11-
# For example, with this setting enabled, the declaration of a pointer will
12-
# look like int* ptr; instead of int *ptr;.
13-
PointerBindsToType: true
11+
# For example, with this setting disabled, the declaration of a pointer will
12+
# look like int *ptr; instead of int* ptr;.
13+
PointerBindsToType: false
1414

1515
# Specify the #include statement order. This implements the order mandated by
1616
# the Google C++ Style Guide: related header, C headers, C++ headers, library
@@ -33,9 +33,6 @@ IncludeCategories:
3333
# Other libraries' h files (with angles).
3434
- Regex: '^<'
3535
Priority: 40
36-
# Your project's h files.
37-
- Regex: '^"(zkir)'
38-
Priority: 50
3936
# Other libraries' h files (with quotes).
4037
- Regex: '^"'
4138
Priority: 40

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ repos:
1717
rev: "v19.1.7"
1818
hooks:
1919
- id: clang-format
20-
args: ["--style=Google"]
20+
args: ["--style=file"]
2121

2222
# cpplint
2323
- repo: https://github.com/pocc/pre-commit-hooks

MODULE.bazel

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,10 @@
1818
#
1919
# For more details, please check https://github.com/bazelbuild/bazel/issues/18958
2020
###############################################################################
21-
bazel_dep(name = "bazel_skylib", version = "1.3.0")
22-
bazel_dep(name = "rules_python", version = "0.30.0")
21+
bazel_dep(name = "bazel_skylib", version = "1.7.1")
22+
bazel_dep(name = "rules_python", version = "0.33.2")
23+
bazel_dep(name = "google_benchmark", version = "1.9.1")
24+
bazel_dep(name = "googletest", version = "1.16.0")
2325

2426
python = use_extension("@rules_python//python/extensions:python.bzl", "python")
2527

0 commit comments

Comments
 (0)