|
1 | | -# Copyright 2025 The vLLM-Sim Authors. |
| 1 | +# Copyright 2025 The llm-d-inference-sim Authors. |
2 | 2 | # |
3 | 3 | # Licensed under the Apache License, Version 2.0 (the "License"); |
4 | 4 | # you may not use this file except in compliance with the License. |
|
12 | 12 | # See the License for the specific language governing permissions and |
13 | 13 | # limitations under the License. |
14 | 14 |
|
15 | | -# Makefile for the vllm-sim project |
| 15 | +# Makefile for the llm-d-inference-sim project |
16 | 16 |
|
17 | 17 | CONTAINER_RUNTIME ?= docker |
18 | 18 |
|
19 | | -PACKAGE_VLLM_SIM = github.com/neuralmagic/vllm-sim/cmd/vllm-sim |
20 | | -VLLM_SIM_NAME = vllm-sim/vllm-sim |
| 19 | +PACKAGE_VLLM_SIM = github.com/llm-d/llm-d-inference-sim/cmd/llm-d-inference-sim |
| 20 | +VLLM_SIM_NAME = llm-d-inference-sim/llm-d-inference-sim |
21 | 21 | VLLM_SIM_TAG ?= 0.0.2 |
22 | 22 |
|
23 | | -.PHONY: build-vllm-sim |
24 | | -build-vllm-sim: |
| 23 | +.PHONY: build-llm-d-inference-sim |
| 24 | +build-llm-d-inference-sim: |
25 | 25 | go build -o bin/ ${PACKAGE_VLLM_SIM} |
26 | 26 |
|
27 | | -.PHONY: build-vllm-sim-linux |
28 | | -build-vllm-sim-linux: |
| 27 | +.PHONY: build-llm-d-inference-sim-linux |
| 28 | +build-llm-d-inference-sim-linux: |
29 | 29 | CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o bin/linux/ ${PACKAGE_VLLM_SIM} |
30 | 30 |
|
31 | | -.PHONY: build-vllm-sim-image |
32 | | -build-vllm-sim-image: build-vllm-sim-linux |
33 | | - $(CONTAINER_RUNTIME) build --file build/vllm-sim.Dockerfile --tag ${VLLM_SIM_NAME}:${VLLM_SIM_TAG} ./bin/linux |
| 31 | +.PHONY: build-llm-d-inference-sim-image |
| 32 | +build-llm-d-inference-sim-image: build-llm-d-inference-sim-linux |
| 33 | + $(CONTAINER_RUNTIME) build --file build/llm-d-inference-sim.Dockerfile --tag ${VLLM_SIM_NAME}:${VLLM_SIM_TAG} ./bin/linux |
34 | 34 |
|
35 | 35 |
|
36 | 36 | SHELL := /usr/bin/env bash |
37 | 37 |
|
38 | 38 | # Defaults |
39 | | -PROJECT_NAME ?= vllm-sim |
| 39 | +PROJECT_NAME ?= llm-d-inference-sim |
40 | 40 | DEV_VERSION ?= 0.0.1 |
41 | 41 | PROD_VERSION ?= 0.0.0 |
42 | 42 | IMAGE_TAG_BASE ?= ghcr.io/llm-d/$(PROJECT_NAME) |
|
0 commit comments