From e1b704b44c0f0e2bf5b05485533100f7c85b202d Mon Sep 17 00:00:00 2001 From: DaniAndTheWeb <57776841+DaniAndTheWeb@users.noreply.github.com> Date: Wed, 26 Apr 2023 00:38:40 +0200 Subject: [PATCH] Update information about BLAS --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index f9ff799b6..4e580ecec 100644 --- a/README.md +++ b/README.md @@ -192,11 +192,11 @@ Note: For Windows, CMake or Zig can be used. zig build -Drelease-fast ``` -BLAS acceleration is not enabled by default, there are currently two different implementations of it: +BLAS is not enabled by default but by enabling it you may obtain some performance improvements. There are currently two different implementations of it: - OpenBLAS - This provides a faster evaluation time using only the CPU. Make sure to have OpenBLAS installed on your machine. + This provides BLAS acceleration using only the CPU. Make sure to have OpenBLAS installed on your machine. - Using `make` ```bash @@ -215,7 +215,7 @@ BLAS acceleration is not enabled by default, there are currently two different i ``` - cuBLAS - This provides a faster evaluation time using the CUDA cores of your Nvidia GPU. Make sure to have the CUDA toolkit installed. + This provides BLAS acceleration using the CUDA cores of your Nvidia GPU. Make sure to have the CUDA toolkit installed. - Using `make` ```bash make LLAMA_CUBLAS=1