-
Notifications
You must be signed in to change notification settings - Fork 145
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add vscode configurations to make development easier (#352)
* Add vscode configurations to make development easier * Review comment * Fix merge conflict * Fix permission * Update dockerfile * Fix username * Review comments * Add link * Review edit
- Loading branch information
Showing
5 changed files
with
171 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
# Copyright 2024, NVIDIA CORPORATION & AFFILIATES. All rights reserved. | ||
# | ||
# Redistribution and use in source and binary forms, with or without | ||
# modification, are permitted provided that the following conditions | ||
# are met: | ||
# * Redistributions of source code must retain the above copyright | ||
# notice, this list of conditions and the following disclaimer. | ||
# * Redistributions in binary form must reproduce the above copyright | ||
# notice, this list of conditions and the following disclaimer in the | ||
# documentation and/or other materials provided with the distribution. | ||
# * Neither the name of NVIDIA CORPORATION nor the names of its | ||
# contributors may be used to endorse or promote products derived | ||
# from this software without specific prior written permission. | ||
# | ||
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ``AS IS'' AND ANY | ||
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE | ||
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR | ||
# PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR | ||
# CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, | ||
# EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, | ||
# PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR | ||
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY | ||
# OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | ||
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | ||
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | ||
|
||
FROM nvcr.io/nvidia/tritonserver:24.03-py3 | ||
|
||
ARG USERNAME=triton-server | ||
|
||
RUN apt-get update \ | ||
&& apt-get install -y sudo | ||
|
||
RUN pip3 install transformers torch | ||
|
||
# Create the user | ||
RUN apt-get update \ | ||
&& apt-get install -y sudo \ | ||
&& echo $USERNAME ALL=\(root\) NOPASSWD:ALL > /etc/sudoers.d/$USERNAME \ | ||
&& chmod 0440 /etc/sudoers.d/$USERNAME | ||
|
||
RUN pip3 install pre-commit ipdb | ||
|
||
RUN mkhomedir_helper triton-server | ||
|
||
RUN apt-get install -y cmake rapidjson-dev | ||
|
||
USER ${USERNAME} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
{ | ||
"name": "Python Backend", | ||
|
||
"build": { | ||
"dockerfile": "Dockerfile" | ||
}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-python.vscode-pylance", | ||
"ms-python.python", | ||
"ms-vscode.cpptools-extension-pack", | ||
"ms-vscode.cmake-tools", | ||
"github.vscode-pull-request-github" | ||
] | ||
} | ||
}, | ||
"postCreateCommand": "sudo chown -R triton-server:triton-server ~/.cache", | ||
|
||
"runArgs": [ "--cap-add=SYS_PTRACE", "--security-opt", "seccomp=unconfined", "--gpus=all", "--shm-size=2g", "--ulimit", "stack=67108864" ], | ||
"mounts": [ | ||
"source=${localEnv:HOME}/.ssh,target=/home/triton-server/.ssh,type=bind,consistency=cached", | ||
"source=${localEnv:HOME}/.cache/huggingface,target=/home/triton-server/.cache/huggingface,type=bind,consistency=cached" | ||
], | ||
"remoteUser": "triton-server" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
/build | ||
/.vscode | ||
*.so | ||
builddir | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,85 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Configure", | ||
"type": "shell", | ||
"command": "cmake", | ||
"args": [ | ||
"-DCMAKE_INSTALL_PREFIX:STRING=/opt/tritonserver/", | ||
"-DTRITON_COMMON_REPO_TAG:STRING=main", | ||
"-DTRITON_BACKEND_REPO_TAG:STRING=main", | ||
"-DTRITON_CORE_REPO_TAG:STRING=main", | ||
"-DTRITON_ENABLE_GPU:STRING=ON", | ||
"-DTRITON_ENABLE_NVTX:STRING=ON", | ||
"-DCMAKE_INSTALL_PREFIX:STRING=${workspaceFolder}/build/install", | ||
"-DCMAKE_EXPORT_COMPILE_COMMANDS:BOOL=TRUE", | ||
"-DCMAKE_BUILD_TYPE:STRING=Debug", | ||
"-DCMAKE_C_COMPILER:FILEPATH=/usr/bin/gcc", | ||
"-DCMAKE_CXX_COMPILER:FILEPATH=/usr/bin/g++", | ||
"-S${workspaceFolder}", | ||
"-B${workspaceFolder}/build", | ||
"-G", | ||
"Unix Makefiles" | ||
], | ||
"problemMatcher": [] | ||
}, | ||
{ | ||
"label": "Build", | ||
"type": "shell", | ||
"command": "cmake", | ||
"args": [ | ||
"--build", | ||
"/${workspaceFolder}/build", | ||
"--config", | ||
"Debug", | ||
"--target", | ||
"all", | ||
"-j", | ||
"18", | ||
"--" | ||
] | ||
}, | ||
{ | ||
"label": "Install", | ||
"type": "shell", | ||
"command": "cmake", | ||
"args": [ | ||
"--build", | ||
"${workspaceFolder}/build", | ||
"--config", | ||
"Debug", | ||
"--target", | ||
"install", | ||
"-j", | ||
"18", | ||
"--" | ||
] | ||
}, | ||
{ | ||
"label": "Move", | ||
"type": "shell", | ||
"command": "sudo", | ||
"args": [ | ||
"cp", | ||
"-r", | ||
"${workspaceFolder}/build/install/backends/python/*", | ||
"/opt/tritonserver/backends/python" | ||
] | ||
}, | ||
{ | ||
"label": "Build Python Backend", | ||
"dependsOrder": "sequence", | ||
"dependsOn": [ | ||
"Configure", | ||
"Build", | ||
"Install", | ||
"Move" | ||
], | ||
"group": { | ||
"kind": "build", | ||
"isDefault": true | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters