generated from runpod-workers/worker-template
-
Notifications
You must be signed in to change notification settings - Fork 124
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1.0.0preview update for Llama 3 support and more (vLLM 0.3.3 -> 0.4.2) (
#62)
- Loading branch information
1 parent
0a5b5bc
commit 874379a
Showing
10 changed files
with
200 additions
and
57 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
variable "PUSH" { | ||
default = "true" | ||
} | ||
|
||
variable "REPOSITORY" { | ||
default = "runpod" | ||
} | ||
|
||
variable "BASE_IMAGE_VERSION" { | ||
default = "1.0.0preview" | ||
} | ||
|
||
group "all" { | ||
targets = ["base", "main"] | ||
} | ||
|
||
group "base" { | ||
targets = ["base-1180", "base-1210"] | ||
} | ||
|
||
group "main" { | ||
targets = ["worker-1180", "worker-1210"] | ||
} | ||
|
||
target "base-1180" { | ||
tags = ["${REPOSITORY}/worker-vllm:base-${BASE_IMAGE_VERSION}-cuda11.8.0"] | ||
context = "vllm-base-image" | ||
dockerfile = "Dockerfile" | ||
args = { | ||
WORKER_CUDA_VERSION = "11.8.0" | ||
} | ||
output = ["type=docker,push=${PUSH}"] | ||
} | ||
|
||
target "base-1210" { | ||
tags = ["${REPOSITORY}/worker-vllm:base-${BASE_IMAGE_VERSION}-cuda12.1.0"] | ||
context = "vllm-base-image" | ||
dockerfile = "Dockerfile" | ||
args = { | ||
WORKER_CUDA_VERSION = "12.1.0" | ||
} | ||
output = ["type=docker,push=${PUSH}"] | ||
} | ||
|
||
target "worker-1180" { | ||
tags = ["${REPOSITORY}/worker-vllm:worker-${BASE_IMAGE_VERSION}-cuda11.8.0"] | ||
context = "." | ||
dockerfile = "Dockerfile" | ||
args = { | ||
BASE_IMAGE_VERSION = "${BASE_IMAGE_VERSION}" | ||
WORKER_CUDA_VERSION = "11.8.0" | ||
} | ||
output = ["type=docker,push=${PUSH}"] | ||
} | ||
|
||
target "worker-1210" { | ||
tags = ["${REPOSITORY}/worker-vllm:worker-${BASE_IMAGE_VERSION}-cuda12.1.0"] | ||
context = "." | ||
dockerfile = "Dockerfile" | ||
args = { | ||
BASE_IMAGE_VERSION = "${BASE_IMAGE_VERSION}" | ||
WORKER_CUDA_VERSION = "12.1.0" | ||
} | ||
output = ["type=docker,push=${PUSH}"] | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
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
Submodule vllm
updated
from c46d23 to ba8f5e
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 +1,3 @@ | ||
version: '0.3.3' | ||
version: '0.3.3' | ||
dev_version: '0.4.2' | ||
worker_dev_version: '1.0.0preview' |