Questions tagged [openblas]

Questions regarding OpenBLAS, an open source library that implements BLAS API and has hand-crafted optimizations for specific processor types.

OpenBLAS is an open source implementation of BLAS, the Basic Linear Algebra Subprograms library, optimized for high performance on multi-core x86-64 processors. It was forked from the GotoBLAS2-1.13 BSD version and was tuned to have performance similar to Intel MKL.

277 questions
0
votes
1 answer

unrecognized command line option '--exclude-libs=libpthread.a' openblas mingw-w64

I'm trying to compile openBLAS (0.2.18 from here) on a windows 10 system. I've installed mingw, msys (with perl, gfortran, etc), and mingw-w64 (basically according to the procedure here). Well into the compilation, I run get the following error:…
Andrew
  • 1
  • 1
0
votes
1 answer

Add/include a Cmake that finds a package into CMake

I found this CMake to find OpenBLAS but I can't find a way how to include that as an external file. What I have in mind is like #include in C/C++. I tried googling bit i get the answer on how to include a project into CMake. The main reason for this…
Lum Zhaveli
  • 175
  • 2
  • 18
0
votes
2 answers

How to build Armadillo C++ lib to statically link to OpenBLAS in non-standard location

I am trying to build Armadillo C++ library (version 6.6) and it does build fine. My problem, however, is that I have separately downloaded the source code for OpenBLAS and built that. I want Armadillo to use the OpenBLAS that I built locally, and…
Dan S
  • 121
  • 1
  • 5
0
votes
1 answer

(C++) How to use OpenBlas libraries with C++?

Sorry if this all seems too simple but I'm a beginner and I'm trying to use the OpenBlas libraries in my C++ IDE "CodeBlocks" on Windows. More specifically, I'm want to use the matrix-vector multiplication and solving of a tri-diagonal matrix system…
Tim
  • 3
  • 4
0
votes
0 answers

OpenBLAS, ‘cblas_zdotc’ not declared?

I am working on a code for a c++ assignment. I am new to the OpenBlas library and would like some guidance on how to apply it. I checked the relevant documentation (https://software.intel.com/en-us/node/520736#A2C46A8C-343B-401D-88B6-9A6B88A4FA47)…
MrSwordFish
  • 61
  • 1
  • 1
  • 4
0
votes
0 answers

Asking for the OpenBLAS installation

I was going to install the OpenBLAS on Mac OS but seems failed at the end. First I downloaded the source and extracted that and then input the 'make' commands on terminal. However, I cannot run 'make install' after it, where it shows make: *** No…
user3217504
  • 105
  • 1
  • 3
  • 14
0
votes
1 answer

Openblas cblas segmentation fault on non square matrix

I'm having trouble running an openblas cblas test program. My Cblas runs perfectly when multiplying square matrixes, but when I try it with non square matrixes, I get the error "segmentation fault - core dumped" I checked and rechecked dimension…
0
votes
1 answer

Ubuntu (percise): libopenblas-dev not available (Chromebook/Crouton)

Laptop: Asus C100P Chromebook OS: CromeOS with Crouton (chroot) Ubuntu Percise Ver 12.04.5 LTS Trying to set up my Python environment with Numpy and Theano. sudo apt-get install libopenblas-dev output Reading Package lists... Done Building…
user2255757
  • 756
  • 1
  • 6
  • 24
0
votes
0 answers

Linking OpenBLAS and Armadillo with CodeBlocks project

I am using Armadillo along with OpenBLAS for linear algebraic operations. For a sample code I am linking these libraries using following commands: g++ sample.cpp -I "path\armadillo\include" -I "path\OpenBLAS\include" -L "path\OpenBLAS\lib"…
Swati45
  • 11
  • 2
0
votes
1 answer

Why OpenBLAS Lapack not Available in Theano Windows?

I'm using Windows 10 64bit, and already installed theano. I've downloaded OpenBLAS from: http://sourceforge.net/projects/openblas/files/v0.2.15/OpenBLAS-v0.2.15-Win64-int32.zip/download and put libopenblas.dll in C:\openblas and other dll file from…
malioboro
  • 3,097
  • 4
  • 35
  • 55
0
votes
1 answer

Armadillo + OpenBLAS multi-threading

I have successfully used Armadillo coupled with OpenBLAS in master's thesis on Ubuntu 14.04 64bit (both with Armadillo installed and without installation). The performance was very impressive - my code consisted mainly from basic matrix operations.…
Jan91
  • 3
  • 2
0
votes
1 answer

linking ipopt against openblas

Currently, I am trying to build Ipopt linking against openblas. I downloaded the openblas source and did make in the parent directory. The configure script of Ipopt has several options to link against blas: I tried ./configure…
Moritz
  • 5,130
  • 10
  • 40
  • 81
0
votes
1 answer

SuperLU with OpenBLAS: undefined reference to `pthread_atfork'

When compiling the SuperLU 4.3 library using OpenBLAS instead of regular BLAS distributions, this error keeps coming up: >gcc cdrive.o sp_cconvert.o cgst01.o cgst02.o cgst04.o cgst07.o sp_ienv.o \ > libtmglib.a /a/location/lib/libsuperlu_4.3.a…
Dan
  • 51
  • 1
  • 4
0
votes
0 answers

OpenBLAS crash on Windows

I'm working with OpenBLAS on Windows and am experiencing crashes. I'm using test code bellow (entire program), taken from Intel MKL from here (I slightly modified it). The same problem is with other function calls. With step by step debugging, the…
Jaka Konda
  • 1,385
  • 3
  • 13
  • 35
0
votes
1 answer

Building OpenBlas with msys2

I have a windows 7-64bit computer and I am trying to build OpenBlas library through Msys2. There seems to be some problem with the gcc as after installing minGW and unziped OpenBlas folder, I open msys2 and I navigate to the folder where OpenBlas is…
Danai Tri
  • 119
  • 3
  • 13
1 2 3
18
19