OpenBLAS

A Highly Optimized Linear Algebra Library based on GotoBLAS

Introduction

OpenBLAS is an implementation of the Basic Linear Algebra Subprograms suite (BLAS) based specifically on the very powerful GotoBLAS implementation which is optimized for specific architectures and high performance computing. For more information and usage information, please refer to the OpenBLAS documentation site.

Using OpenBLAS on RCC Resources

In odrer to use OpenBLAS on RCC Systems, there is no module that needs to be loaded. All that needs to be done is to compile with the correct libraries linked. This can be done, for example, with GCC as:

gcc -c TEST.c -I/opt/hpc/gnu/include
gcc TEST.o -L/opt/hpc/gnu/lib64 -lopenblas