Skip to content

Commit 3f37fcd

Browse files
committed
more fixes
ggml-ci
1 parent d2021c4 commit 3f37fcd

File tree

4 files changed

+7
-3
lines changed

4 files changed

+7
-3
lines changed

.flake8

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,9 @@
22
max-line-length = 125
33
ignore = E203,E211,E221,E225,E231,E241,E251,E261,E266,E501,E701,E704,W503
44
exclude =
5-
# Do not traverse examples
5+
# Do not traverse examples and tools
66
examples,
7+
tools,
78
# Do not include package initializers
89
__init__.py,
910
# No need to traverse our git directory

.github/labeler.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,9 @@ build:
4545
- CMakePresets.json
4646
examples:
4747
- changed-files:
48-
- any-glob-to-any-file: examples/**
48+
- any-glob-to-any-file:
49+
- examples/**
50+
- tools/**
4951
devops:
5052
- changed-files:
5153
- any-glob-to-any-file:

examples/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ else()
3434
add_subdirectory(speculative-simple)
3535
add_subdirectory(gen-docs)
3636
if (NOT GGML_BACKEND_DL)
37+
add_subdirectory(convert-llama2c-to-ggml)
3738
# these examples use the backends directly and cannot be built with dynamic loading
3839
if (GGML_SYCL)
3940
add_subdirectory(sycl)

tools/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ find_package(Threads REQUIRED)
1010

1111
llama_add_compile_flags()
1212

13-
# examples
13+
# tools
1414

1515
if (EMSCRIPTEN)
1616
else()

0 commit comments

Comments
 (0)