[Pkg-octave-devel] Bug#794443: Bug#794443: octave: should not recommendlibopenblas-base

Mike Miller mtmiller at debian.org
Sat Aug 29 20:58:17 UTC 2015


On Mon, Aug 03, 2015 at 17:14:33 +0800, Wang S wrote:
> Thank you.
> 
> In fact, the crash does not always happen when matrix size >= 10x10.
> 
> Exactly, in my situation, for the 82x82 matrix "a" in the attach file "a.txt", it will crash.
> And I also have tried "for n=1:82 inv(a(1:n,1:n)); end", it will crash when n = 43.
> 
> So, would you please have a try of the attach data file "a.txt" with the following script?
> > load a.txt
> > inv(a)

Hi, none of these cause a crash for me using OpenBLAS with your provided
matrix:

  >> load a.txt
  >> inv (a);
  >> for n = 1:82; inv (a(1:n, 1:n)); endfor;
  >> for n = 1:10000; inv (a); endfor;

-- 
mike



More information about the Pkg-octave-devel mailing list