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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 1 addition & 1 deletion .clang-tidy.ignore
Original file line number Diff line number Diff line change
@@ -1 +1 @@
src/quantizer/gguf.hpp
mllm/quantizer/gguf.hpp
20 changes: 13 additions & 7 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
.vscode/
.idea/
.cache/
.DS_Store
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

Remove duplicate .DS_Store entry.

Lines 5 and 40 both define .DS_Store. Keep one and remove the duplicate for clarity.

Apply this diff:

- .DS_Store
  examples/test.cpp

Remove line 40 and consolidate at line 5 (already present).

Also applies to: 40-40

🤖 Prompt for AI Agents
In .gitignore around lines 5 to 40, there is a duplicate .DS_Store entry
(present at line 5 and again at line 40); remove the duplicate at line 40 and
leave the single .DS_Store entry at line 5 so the file contains only one
.DS_Store line for clarity.

build*/
build/
bin/
Expand All @@ -26,15 +27,20 @@ models/*
/.devcontainer/
/.vscode/
workflow.py
src/backends/qnn/qualcomm_ai_engine_direct_220/*
src/backends/qnn/HexagonSDK/*
mllm/backends/qnn/qualcomm_ai_engine_direct_220/*
mllm/backends/qnn/HexagonSDK/*
tmp/
py-build-out/
mllm.egg-info/

examples/demo_deepseek.cpp
src/models/deepseek/*
examples/demo.cpp
mllm/backends/qnn/sdk*

src/backends/qnn/sdk/*
*.mllm


.DS_Store
examples/test.cpp
examples/demo_bailing_moe2*
mllm/models/ling2
scripts/tmp.sh
tools/convertor/gptq_converter.py
*.patch
7 changes: 5 additions & 2 deletions .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,12 @@
[submodule "third_party/pybind11"]
path = third_party/pybind11
url = https://github.com/pybind/pybind11.git
[submodule "src/backends/xnnpack/third_party/XNNPACK"]
path = src/backends/xnnpack/third_party/XNNPACK
[submodule "mllm/backends/xnnpack/third_party/XNNPACK"]
path = mllm/backends/xnnpack/third_party/XNNPACK
url = https://github.com/google/XNNPACK.git
[submodule "third_party/googletest"]
path = third_party/googletest
url = https://github.com/google/googletest.git
[submodule "mllm/backends/cpu/third_party/kleidiai"]
path = mllm/backends/cpu/third_party/kleidiai
url = https://github.com/ARM-software/kleidiai
Loading