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

2016-05-30 Thread Wang S
Dear maintainers,
I'm sorry that in my system Debian stable (jessie) there is no package 
libopenblas-dbg, so I could not do the backtrace.
Besides, after octave 4.0 came into jessie-backports I had upgrade my octave 
package from 3.8 to 4.0 (currently version is octave 4.0.2-1~bpo8+1), and in 
this new version this crash bug no longer exists.
Thanks maintainers.
Wang S
 
-- Original --
From:  "Sébastie Villemot";
Date:  Sat, Oct 3, 2015 05:31 PM
To:  "Wang S"; "794443"<794...@bugs.debian.org>; 
Subject:  Re: [Pkg-octave-devel] Bug#794443: octave: should 
notrecommendlibopenblas-base
 
Thanks for your feedback.

A backtrace would be useful. Please do the following:

- install the following packages: gdb, octave-dbg, libopenblas-dbg
- run octave from gdb (with "gdb octave-cli"), then type "run" at the
gdb prompt. You should get the octave prompt
- from the octave prompt, trigger the crash. You should be given back a
gdb prompt
- type "backtrace" at the gdb prompt, and send the output to this
bugreport
Thanks,
-- 
 .''`.Sébastien Villemot
: :' :Debian Developer
`. `' http://sebastien.villemot.name
  `-  GPG Key: 4096R/381A7594

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

2015-08-30 Thread 王硕
That's good.
Thank you maintainer.

 
-- Original --
From:  "Mike Miller";
Date:  Sun, Aug 30, 2015 04:58 AM
To:  "Wang S"; "794443"<794...@bugs.debian.org>; 

Subject:  Re: Bug#794443: [Pkg-octave-devel] Bug#794443: octave: should 
notrecommendlibopenblas-base

 
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:1; inv (a); endfor;

-- 
mike