fix: also show total memory after full warmup

This commit is contained in:
drbh 2024-08-22 17:57:51 +00:00
parent 8b4cd2a9fc
commit e152cb022b
1 changed files with 2 additions and 1 deletions

View File

@ -1386,7 +1386,8 @@ class FlashCausalLM(Model):
total_cuda_graph_memory = free_memory_post_alloc - last_available_memory
log_master(
logger.info,
f"Total memory used for CUDA graphs: {total_cuda_graph_memory/1024/1024:.2f} MB",
f"Total memory used for CUDA graphs: {total_cuda_graph_memory/1024/1024:.2f} MB"
f"\nTotal memory available: {last_available_memory/1024/1024:.2f} MB",
)
except torch.cuda.OutOfMemoryError:
logger.exception("Decode cuda graph warmup failed")