forked from mlc-ai/mlc-llm
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
13 changed files
with
262 additions
and
60 deletions.
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
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
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,91 @@ | ||
#!/usr/bin/env bash | ||
|
||
# | ||
# Start a bash, mount /workspace to be current directory. | ||
# | ||
# Usage: docker/bash.sh <CONTAINER_NAME> | ||
# Starts an interactive session | ||
# | ||
# Usage2: docker/bash.sh <CONTAINER_NAME> [COMMAND] | ||
# Execute command in the docker image, non-interactive | ||
# | ||
if [ "$#" -lt 1 ]; then | ||
echo "Usage: docker/bash.sh <CONTAINER_NAME> [--no-gpu] [COMMAND]" | ||
exit -1 | ||
fi | ||
|
||
if [ "$1" == "--no-gpu" ]; then | ||
ENABLE_NV_DOCKER=0 | ||
shift | ||
else | ||
ENABLE_NV_DOCKER=1 | ||
fi | ||
|
||
DOCKER_IMAGE_NAME=("$1") | ||
|
||
|
||
if [ "$#" -eq 1 ]; then | ||
COMMAND="bash" | ||
if [[ $(uname) == "Darwin" ]]; then | ||
# Docker's host networking driver isn't supported on macOS. | ||
# Use default bridge network and expose port for jupyter notebook. | ||
DOCKER_EXTRA_PARAMS=("-it -p 8888:8888") | ||
else | ||
DOCKER_EXTRA_PARAMS=("-it --net=host") | ||
fi | ||
else | ||
shift 1 | ||
COMMAND=("$@") | ||
fi | ||
|
||
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" | ||
WORKSPACE="$(pwd)" | ||
|
||
# Use nvidia-docker if the container is GPU. | ||
if [[ ! -z $CUDA_VISIBLE_DEVICES ]]; then | ||
CUDA_ENV="-e CUDA_VISIBLE_DEVICES=${CUDA_VISIBLE_DEVICES}" | ||
else | ||
CUDA_ENV="" | ||
fi | ||
|
||
# If this is an wheel test command then pass the env var to docker. | ||
if [[ ! -z $WHEEL_TEST ]]; then | ||
WHEEL_TEST="-e WHEEL_TEST=${WHEEL_TEST}" | ||
fi | ||
|
||
if [[ "${DOCKER_IMAGE_NAME}" == *"cu"* ]]; then | ||
if [ "$ENABLE_NV_DOCKER" -eq 1 ]; then | ||
if ! type "nvidia-docker" 1> /dev/null 2> /dev/null | ||
then | ||
DOCKER_BINARY="docker" | ||
CUDA_ENV=" --gpus all "${CUDA_ENV} | ||
else | ||
DOCKER_BINARY="nvidia-docker" | ||
fi | ||
else | ||
DOCKER_BINARY="docker" | ||
fi | ||
else | ||
DOCKER_BINARY="docker" | ||
fi | ||
|
||
# Print arguments. | ||
echo "WORKSPACE: ${WORKSPACE}" | ||
echo "DOCKER CONTAINER NAME: ${DOCKER_IMAGE_NAME}" | ||
echo "" | ||
|
||
echo "Running '${COMMAND[@]}' inside ${DOCKER_IMAGE_NAME}..." | ||
|
||
# By default we cleanup - remove the container once it finish running (--rm) | ||
# and share the PID namespace (--pid=host) so the process inside does not have | ||
# pid 1 and SIGKILL is propagated to the process inside (jenkins can kill it). | ||
|
||
${DOCKER_BINARY} run --rm --pid=host\ | ||
-v ${WORKSPACE}:/workspace \ | ||
-v ${SCRIPT_DIR}:/docker \ | ||
-w /workspace \ | ||
${CUDA_ENV} \ | ||
${WHEEL_TEST} \ | ||
${DOCKER_EXTRA_PARAMS[@]} \ | ||
${DOCKER_IMAGE_NAME} \ | ||
${COMMAND[@]} |
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
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,67 @@ | ||
#!/bin/bash | ||
set -eo pipefail | ||
|
||
source ~/.bashrc | ||
micromamba activate ci-lint | ||
export NUM_THREADS=$(nproc) | ||
export PYTHONPATH="./python:$PYTHONPATH" | ||
|
||
set -x | ||
git config --global --add safe.directory '*' | ||
|
||
INPLACE_FORMAT=${INPLACE_FORMAT:=false} | ||
LINT_ALL_FILES=true | ||
REVISION=$(git rev-list --max-parents=0 HEAD) | ||
|
||
while (($#)); do | ||
case "$1" in | ||
-i) | ||
INPLACE_FORMAT=true | ||
shift 1 | ||
;; | ||
--rev) | ||
LINT_ALL_FILES=false | ||
REVISION=$2 | ||
shift 2 | ||
;; | ||
*) | ||
echo "Usage: clang-format.sh [-i] [--rev <commit>]" | ||
echo "" | ||
echo "Run clang-format on files that changed since <commit> or on all files in the repo" | ||
echo "Examples:" | ||
echo "- Compare last one commit: clang-format.sh --rev HEAD~1" | ||
echo "- Compare against upstream/main: clang-format.sh --rev upstream/main" | ||
echo "The -i will format files in-place instead of checking them." | ||
exit 1 | ||
;; | ||
esac | ||
done | ||
|
||
cleanup() { | ||
if [ -f /tmp/$$.clang-format.txt ]; then | ||
echo "" | ||
echo "---------clang-format log----------" | ||
cat /tmp/$$.clang-format.txt | ||
fi | ||
rm -rf /tmp/$$.clang-format.txt | ||
} | ||
trap cleanup 0 | ||
|
||
if [[ "$INPLACE_FORMAT" == "true" ]]; then | ||
echo "Running inplace git-clang-format against $REVISION" | ||
git-clang-format --extensions h,hh,hpp,c,cc,cpp,mm "$REVISION" | ||
exit 0 | ||
fi | ||
|
||
if [[ "$LINT_ALL_FILES" == "true" ]]; then | ||
echo "Running git-clang-format against all C++ files" | ||
git-clang-format --diff --extensions h,hh,hpp,c,cc,cpp,mm "$REVISION" 1>/tmp/$$.clang-format.txt | ||
else | ||
echo "Running git-clang-format against $REVISION" | ||
git-clang-format --diff --extensions h,hh,hpp,c,cc,cpp,mm "$REVISION" 1>/tmp/$$.clang-format.txt | ||
fi | ||
|
||
if grep --quiet -E "diff" </tmp/$$.clang-format.txt; then | ||
echo "clang-format lint error found. Consider running clang-format on these files to fix them." | ||
exit 1 | ||
fi |
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
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
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
Oops, something went wrong.