From b6904cc79f2ebd7d362da5cb8f30a5525497ca20 Mon Sep 17 00:00:00 2001 From: DaniAndTheWeb <57776841+DaniAndTheWeb@users.noreply.github.com> Date: Wed, 26 Apr 2023 01:33:25 +0200 Subject: [PATCH] BLAS for Mac Specifying that BLAS is already supported on Macs using the Accelerate Framework. --- README.md | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index a6e33d695..b4897dfa9 100644 --- a/README.md +++ b/README.md @@ -194,7 +194,11 @@ Note: For Windows, CMake or Zig can be used. #### BLAS Build -Building the program with BLAS support may lead to some performance improvements in prompt processing using batch sizes higher than 32 (the default is 512). BLAS doesn't affect the prompt generation. There are currently two different implementations of it: +Building the program with BLAS support may lead to some performance improvements in prompt processing using batch sizes higher than 32 (the default is 512). BLAS doesn't affect the prompt generation. There are currently three different implementations of it: + +- Accelerate Framework + + This is only available on Mac PCs and it's enabled by default. You can just build using the normal instructions. - OpenBLAS