Skip to content

Commit 89c917b

Browse files
committed
fix conflict
1 parent 184b648 commit 89c917b

2 files changed

Lines changed: 96 additions & 681 deletions

File tree

fastdeploy/envs.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -293,6 +293,9 @@ def _validate_split_kv_size(value: int) -> int:
293293
"FD_FP8_QUANT_WITH_POW2SCALE": lambda: bool(int(os.getenv("FD_FP8_QUANT_WITH_POW2SCALE", "0"))),
294294
# enable kv cache manager v1
295295
"ENABLE_V1_KVCACHE_MANAGER": lambda: int(os.getenv("ENABLE_V1_KVCACHE_MANAGER", "0")),
296+
# When set to 1, print which op / shape enters the block-wise CUDA Graph
297+
# during the capture phase. Defaults to 0 (silent).
298+
"FD_BLOCK_WISE_DEBUG": lambda: bool(int(os.getenv("FD_BLOCK_WISE_DEBUG", "0"))),
296299
}
297300

298301

0 commit comments

Comments
 (0)