This is an automated email from the git hooks/post-receive script.

logari81 pushed a commit to branch master
in repository getfem.

The following commit(s) were added to refs/heads/master by this push:
     new 138f66ec Enable use of BLAS in generic assembly instructions by default
138f66ec is described below

commit 138f66ec338c6c5227ff670677e464689b10d3a2
Author: Konstantinos Poulios <logar...@gmail.com>
AuthorDate: Thu Dec 7 16:20:04 2023 +0100

    Enable use of BLAS in generic assembly instructions by default
    
      - major performance improvement in 1 of the benchmarks in
        test_assembly.cc
---
 src/getfem_generic_assembly_compile_and_exec.cc | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/getfem_generic_assembly_compile_and_exec.cc 
b/src/getfem_generic_assembly_compile_and_exec.cc
index 4dc34a28..7ae88cb6 100644
--- a/src/getfem_generic_assembly_compile_and_exec.cc
+++ b/src/getfem_generic_assembly_compile_and_exec.cc
@@ -25,7 +25,9 @@
 #include "getfem/getfem_generic_assembly_compile_and_exec.h"
 #include "getfem/getfem_generic_assembly_functions_and_operators.h"
 
-//#define GA_USES_BLAS
+#if defined(GMM_USES_BLAS)
+#define GA_USES_BLAS
+#endif
 
 // #define GA_DEBUG_INFO(a) { cout << a << endl; }
 #define GA_DEBUG_INFO(a)

Reply via email to