From 6f71f2692137e0b5d706f01a04f5ec9df453073c Mon Sep 17 00:00:00 2001 From: randaller Date: Sun, 5 Mar 2023 19:35:05 +0300 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f40faed..de76a74 100755 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ Running model with single prompt on Windows computer equipped with 12700k, fast | 13B | 77 Gb, peak 100 Gb | 38 Gb | 380 seconds | can't handle to wait | ### RAM usage optimization -By default, torch uses Float32 precision while running on CPU, that leads, for example, to using 44 GB of RAM for 7B model. We may use Bfloat16 precision on CPU too, which decreases RAM consumption/2, down to 22 GB for 7B model, but inference processing much slower. +By default, torch uses Float32 precision while running on CPU, which leads, for example, to use 44 GB of RAM for 7B model. We may use Bfloat16 precision on CPU too, which decreases RAM consumption/2, down to 22 GB for 7B model, but inference processing much slower. Uncomment this line in the example-cpu.py to enable Bfloat16 and save memory. ```