Skip to content
Draft
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: 2 additions & 1 deletion jenkins/GenerateLock.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ def generate()
sh "apt update"
sh "apt install -y python3-dev git curl"
sh "git config --global --add safe.directory ${env.WORKSPACE}"
sh "git config --global user.email \"tensorrt_llm@nvidia.com\""
sh "git config --global user.email \"[email protected].com\""
sh "git config --global user.name \"TensorRT LLM\""
trtllm_utils.checkoutSource(LLM_REPO, params.llmBranch, env.WORKSPACE, false, false)
sh "python3 --version"
Expand All @@ -66,6 +66,7 @@ def generate()
withCredentials([usernamePassword(credentialsId: 'github-cred-trtllm-ci', usernameVariable: 'GIT_USER', passwordVariable: 'GIT_PASS')]) {
def authedUrl = LLM_REPO.replaceFirst('https://', "https://${GIT_USER}:${GIT_PASS}@")
sh "git remote set-url origin ${authedUrl}"
// sh "git pull --rebase origin HEAD:${params.llmBranch}"
sh "git push origin HEAD:${params.llmBranch}"
}
}
Expand Down
2 changes: 1 addition & 1 deletion scripts/generate_lock_file.py
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ def get_project_info(path: str):
print(f"Initializing PyProject.toml in {file_path}")
project_info = get_project_info(file_path)
name = project_info["name"]
author = '"TensorRT LLM [svc_tensorrt_llm@nvidia.com]"'
author = '"TensorRT LLM [[email protected].com]"'
version = project_info["version"]
py_version = '">=3.10,<3.13"'
poetry_init_cmd = f'poetry init --no-interaction --name {name} --author {author} --python {py_version}'
Expand Down
214 changes: 214 additions & 0 deletions security_scanning/cpp/kernels/fmha_v2/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

17 changes: 17 additions & 0 deletions security_scanning/cpp/kernels/fmha_v2/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[tool.poetry]
name = "unknown-package"
version = "0.1.0"
description = ""
authors = ["TensorRT LLM [[email protected]]"]
readme = "README.md"

[tool.poetry.dependencies]
python = ">=3.10,<3.13"
pytest = "7.2.2"
pytest-cpp = "2.3.0"
pytest-xdist = "3.2.1"


[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
Loading
Loading