Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .buildkite/models/meta-llama_Llama-Guard-4-12B.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ steps:
env:
CI_STAGE: "UnitTest"
CI_TARGET: meta-llama/Llama-Guard-4-12B
CI_CATEGORY: "text-only"
agents:
queue: cpu
commands:
Expand All @@ -40,6 +41,7 @@ steps:
env:
CI_TARGET: meta-llama/Llama-Guard-4-12B
CI_STAGE: "IntegrationTest"
CI_CATEGORY: "text-only"
agents:
queue: cpu
commands:
Expand All @@ -62,6 +64,7 @@ steps:
env:
CI_TARGET: meta-llama/Llama-Guard-4-12B
CI_STAGE: "Benchmark"
CI_CATEGORY: "text-only"
agents:
queue: cpu
commands:
Expand Down
7 changes: 4 additions & 3 deletions .buildkite/scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,11 @@ upload_pipeline() {
VLLM_COMMIT_HASH=$(git ls-remote https://github.com/vllm-project/vllm.git HEAD | awk '{ print $1}')
buildkite-agent meta-data set "VLLM_COMMIT_HASH" "${VLLM_COMMIT_HASH}"
echo "Using vllm commit hash: $(buildkite-agent meta-data get "VLLM_COMMIT_HASH")"
buildkite-agent pipeline upload .buildkite/pipeline_jax.yml
# buildkite-agent pipeline upload .buildkite/pipeline_jax.yml
buildkite-agent pipeline upload .buildkite/models/meta-llama_Llama-Guard-4-12B.yml
# buildkite-agent pipeline upload .buildkite/pipeline_torch.yml
buildkite-agent pipeline upload .buildkite/main.yml
buildkite-agent pipeline upload .buildkite/nightly_releases.yml
# buildkite-agent pipeline upload .buildkite/main.yml
# buildkite-agent pipeline upload .buildkite/nightly_releases.yml
}

echo "--- Starting Buildkite Bootstrap ---"
Expand Down
5 changes: 1 addition & 4 deletions tests/e2e/benchmarking/safety_model_benchmark.sh
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,7 @@ fi
run_accuracy_check() {
echo -e "\n--- Running Accuracy Check (Mode: ACCURACY) ---"

CONFTEST_DIR="/workspace/tpu-inference/scripts/vllm/integration"
CONFTEST_DIR="/mnt/disks/jiries-disk_data/tpu-inference/scripts/vllm/integration"
CONFTEST_DIR="/workspace/tpu_inference/scripts/vllm/integration"

RELATIVE_TEST_FILE="test_safety_model_accuracy.py"

Expand All @@ -146,8 +145,6 @@ run_accuracy_check() {
--model-name="$MODEL_NAME" \
--expected-value="$MINIMUM_ACCURACY_THRESHOLD" \
--dataset-path="$LOCAL_CSV_FILE"

return $?
)
return $?
}
Expand Down