Skip to content

Commit

Permalink
[serving] Print PIPELINE_PARALLEL_DEGREE env var (#2357)
Browse files Browse the repository at this point in the history
  • Loading branch information
xyang16 authored Sep 4, 2024
1 parent 4d819eb commit 0800c90
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -580,6 +580,7 @@ public String dumpConfigurations() {
|| key.startsWith("OPTION_")
|| key.contains("SAGEMAKER")
|| "TENSOR_PARALLEL_DEGREE".equals(key)
|| "PIPELINE_PARALLEL_DEGREE".equals(key)
|| "OMP_NUM_THREADS".equals(key)
|| "CUDA_VISIBLE_DEVICES".equals(key)) {
sb.append("\n ").append(key).append(": ").append(entry.getValue());
Expand Down

0 comments on commit 0800c90

Please sign in to comment.