Skip to content

Commit

Permalink
Merge branch 'artifact' of github.com:microsoft/ParrotServe
Browse files Browse the repository at this point in the history
  • Loading branch information
hzhua committed Apr 18, 2024
2 parents ea68a53 + 680606e commit 4df52ab
Show file tree
Hide file tree
Showing 771 changed files with 139,354 additions and 9 deletions.
15 changes: 15 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env bash
# Copyright (c) 2023 by Microsoft Corporation.
# Licensed under the MIT license.

export TORCH_CUDA_ARCH_LIST=8.0
export CUDA_HOME=/usr/local/cuda-12.1
export LD_LIBRARY_PATH=/usr/local/cuda-12.1/lib64:$LD_LIBRARY_PATH

export SIMULATE_NETWORK_LATENCY_PRT=1 # 0 off, 1 on
export SIMULATE_NETWORK_LATENCY_FS=1 # 0 off, 1 on

# export FS_MAX_GEN_LENGTH=20
# export FS_MAX_GEN_LENGTH=50

# CUDA_LAUNCH_BLOCKING=1
67 changes: 67 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -396,3 +396,70 @@ FodyWeavers.xsd

# JetBrains Rider
*.sln.iml
# Python
__pycache__
*.pyc
*.egg-info
dist
.venv

# Test
test.txt

# Log
*.log
*.log.*
log
# *.json
# *.txt

# Editor
*.swp

# Other
.DS_Store
wandb
output

# Data
*.pkl
*.csv

# Build
build

# VSCode
.vscode

# Misc
tmp
raw_data
log
*.pt
*.pth
data
*.so
*.pdf


# We do not public our OpenAI API-Key
sample_configs/engine/azure-openai*
sample_configs/engine/openai*
# But we provide an example config
!sample_configs/engine/openai-example-config.json

# Benchmark workloads
artifact_osdi24/workloads/*/*.json
artifact_osdi24/workloads/*/*.jsonl
*.parquet
# It's safe!
!artifact_osdi24/workloads/gpts/*.json

# Safe to upload
!artifact_osdi24/workloads/metagpt/*.json
!artifact_osdi24/workloads/metagpt/*.jsonl

# Evaluation data
!benchmark/*/results/*/*.log
!benchmark/*/results/*.log
.ipynb_checkpoints/
12 changes: 12 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[submodule "3rdparty/langchain"]
path = 3rdparty/langchain
url = [email protected]:langchain-ai/langchain.git
[submodule "3rdparty/FastChat"]
path = 3rdparty/FastChat
url = [email protected]:lm-sys/FastChat.git
[submodule "3rdparty/vllm"]
path = 3rdparty/vllm
url = [email protected]:vllm-project/vllm.git
[submodule "benchmark/workloads/arxiv/Selective_Context"]
path = benchmark/workloads/arxiv/Selective_Context
url = https://github.com/liyucheng09/Selective_Context.git
Loading

0 comments on commit 4df52ab

Please sign in to comment.