File tree Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Expand file tree Collapse file tree 1 file changed +10
-0
lines changed Original file line number Diff line number Diff line change @@ -393,6 +393,12 @@ def main():
393
393
if "python_backend" in repo_tags :
394
394
clone_from_github ("python_backend" , repo_tags ["python_backend" ], github_org )
395
395
396
+ # Usage generate_docs.py --repo-tag=tensorrtllm_backend:main
397
+ if "tensorrtllm_backend" in repo_tags :
398
+ clone_from_github (
399
+ "tensorrtllm_backend" , repo_tags ["tensorrtllm_backend" ], github_org
400
+ )
401
+
396
402
# Usage generate_docs.py --backend-tag=custom_backend:main
397
403
# Custom backend can be anything currently empty
398
404
if "custom_backend" in backend_tags :
@@ -409,6 +415,10 @@ def main():
409
415
run_command ("rm -rf python_backend" )
410
416
if "custom_backend" in backend_tags :
411
417
run_command ("rm -rf custom_backend" )
418
+ if "tensorrtllm_backend" in repo_tags :
419
+ run_command ("rm -rf tensorrtllm_backend" )
420
+ if "perf_analyzer" in repo_tags :
421
+ run_command ("rm -rf perf_analyzer" )
412
422
413
423
# Return to previous working directory server/.
414
424
os .chdir (server_abspath )
You can’t perform that action at this time.
0 commit comments