mirror of
https://github.com/NVIDIA/TensorRT-LLM.git
synced 2026-01-13 22:18:36 +08:00
Add 3rd party dependency
This commit is contained in:
parent
23bc5b7c49
commit
7736d528a1
24
.gitignore
vendored
Normal file
24
.gitignore
vendored
Normal file
@ -0,0 +1,24 @@
|
||||
__pycache__/
|
||||
.vscode
|
||||
*.engine
|
||||
*.engine.config
|
||||
*.cache
|
||||
*.nsys-rep
|
||||
.VSCodeCounter
|
||||
build*/
|
||||
*.so
|
||||
*.egg-info/
|
||||
.coverage
|
||||
*.csv
|
||||
*.onnx
|
||||
tmp/
|
||||
venv/
|
||||
.venv/
|
||||
.local/
|
||||
.hypothesis/
|
||||
.idea/
|
||||
cpp/cmake-build-*
|
||||
|
||||
# Testing
|
||||
.coverage.*
|
||||
results_trt/
|
||||
11
.gitmodules
vendored
Normal file
11
.gitmodules
vendored
Normal file
@ -0,0 +1,11 @@
|
||||
[submodule "3rdparty/cutlass"]
|
||||
path = 3rdparty/cutlass
|
||||
url = https://github.com/NVIDIA/cutlass.git
|
||||
branch = v2.10.0
|
||||
[submodule "3rdparty/json"]
|
||||
path = 3rdparty/json
|
||||
url = https://github.com/nlohmann/json.git
|
||||
[submodule "3rdparty/cxxopts"]
|
||||
path = 3rdparty/cxxopts
|
||||
url = https://github.com/jarro2783/cxxopts
|
||||
branch = v3.1.1
|
||||
42
.pre-commit-config.yaml
Normal file
42
.pre-commit-config.yaml
Normal file
@ -0,0 +1,42 @@
|
||||
repos:
|
||||
- repo: https://github.com/pycqa/isort
|
||||
rev: 5.12.0
|
||||
hooks:
|
||||
- id: isort
|
||||
- repo: https://github.com/Lucas-C/pre-commit-hooks.git
|
||||
rev: v1.1.13
|
||||
hooks:
|
||||
- id: remove-crlf
|
||||
- repo: https://github.com/pre-commit/mirrors-yapf
|
||||
rev: v0.32.0
|
||||
hooks:
|
||||
- id: yapf
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.1.0
|
||||
hooks:
|
||||
- id: check-added-large-files
|
||||
exclude: 'cpp/tensorrt_llm/kernels/contextFusedMultiHeadAttention/cubin'
|
||||
- id: check-merge-conflict
|
||||
- id: check-symlinks
|
||||
- id: detect-private-key
|
||||
- id: end-of-file-fixer
|
||||
- id: check-yaml
|
||||
- id: trailing-whitespace
|
||||
- repo: https://github.com/PyCQA/autoflake
|
||||
rev: v1.6.1
|
||||
hooks:
|
||||
- id: autoflake
|
||||
args: ['--in-place', '--remove-all-unused-imports', '--remove-unused-variables']
|
||||
- repo: https://github.com/pre-commit/mirrors-clang-format
|
||||
rev: v16.0.0
|
||||
hooks:
|
||||
- id: clang-format
|
||||
types_or: [c++, c, cuda]
|
||||
exclude: |
|
||||
(?x)^(
|
||||
cpp/tensorrt_llm/kernels/contextFusedMultiHeadAttention/cubin/.*
|
||||
)$
|
||||
- repo: https://github.com/cheshirekow/cmake-format-precommit
|
||||
rev: v0.6.10
|
||||
hooks:
|
||||
- id: cmake-format
|
||||
1
3rdparty/cutlass
vendored
Submodule
1
3rdparty/cutlass
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit fc9ebc645b63f3a6bc80aaefde5c063fb72110d6
|
||||
1
3rdparty/cxxopts
vendored
Submodule
1
3rdparty/cxxopts
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit eb787304d67ec22f7c3a184ee8b4c481d04357fd
|
||||
1
3rdparty/json
vendored
Submodule
1
3rdparty/json
vendored
Submodule
@ -0,0 +1 @@
|
||||
Subproject commit 5fec8034933ef434a98dfbd2551b052c56345869
|
||||
Loading…
Reference in New Issue
Block a user