Skip to content

Commit

Permalink
format tf
Browse files Browse the repository at this point in the history
  • Loading branch information
kaushikmitr committed Mar 7, 2024
1 parent 8e688a1 commit 52dd065
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 3 additions & 1 deletion benchmarks/inference-server/triton/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
*/

locals {
template_path = var.gcs_model_path == null ? "${path.module}/manifest-templates/triton-tensorrtllm-inference-docker.tftpl" : "${path.module}/manifest-templates/triton-tensorrtllm-inference-gs.tftpl"
template_path = var.gcs_model_path == null
? "${path.module}/manifest-templates/triton-tensorrtllm-inference-docker.tftpl"
: "${path.module}/manifest-templates/triton-tensorrtllm-inference-gs.tftpl"
}

resource "kubernetes_manifest" "default" {
Expand Down
1 change: 0 additions & 1 deletion benchmarks/inference-server/triton/sample-terraform.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,4 @@ namespace = "benchmark"
ksa = "benchmark-ksa"
model_id = "meta-llama/Llama-2-7b-chat-hf"
gpu_count = 1
image_path = ""
gcs_model_path = ""

0 comments on commit 52dd065

Please sign in to comment.