Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-07-02 Thread Lumin
Control: tag -1 +patch The fix is attached. It fails on my side simply because the python3-llvmlite package is too old. The default version in sid (0.16.0) does not work with numba. Listing... Done python3-llvmlite/experimental,now 0.18.0-1 amd64 [installed] python3-llvmlite/unstable 0.16.0-1

Processed: Re: Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-07-02 Thread Debian Bug Tracking System
Processing control commands: > tag -1 +patch Bug #864365 [python3-numba] A simple program ends up with SIGSEGV [amd64] Added tag(s) patch. -- 864365: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=864365 Debian Bug Tracking System Contact ow...@bugs.debian.org with problems --

Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-07-02 Thread Lumin
The numba package installed with pip3 seems working. It is able to run numba.runtests.main() However the Debian package will segfault immediately if you do so. On 7 June 2017 at 16:23, Daniel Stender wrote: > On 07.06.2017 18:13, Lumin wrote: >> Oops, that's a

Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-06-07 Thread Daniel Stender
On 07.06.2017 18:13, Lumin wrote: > Oops, that's a sorrowful story ... I've put it on RFA now (#864367). If you would like to pick it up, welcome! Dan -- 4096R/DF5182C8 Debian Developer (sten...@debian.org) http://www.danielstender.com/ -- debian-science-maintainers mailing list

Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-06-07 Thread Lumin
Oops, that's a sorrowful story ... On 7 June 2017 at 16:01, Daniel Stender wrote: > On 07.06.2017 17:52, Lumin wrote: >> Package: python3-numba >> Version: 0.33.0-1 >> Severity: severe >> >> Hi, >> >> It fails to run even the simplest code: >> >> ``` >>

Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-06-07 Thread Daniel Stender
On 07.06.2017 17:52, Lumin wrote: > Package: python3-numba > Version: 0.33.0-1 > Severity: severe > > Hi, > > It fails to run even the simplest code: > > ``` > #!/usr/bin/python3 > from numba import jit > from numpy import arange > import time > > @jit > def sum2d(arr): > M, N = arr.shape

Bug#864365: A simple program ends up with SIGSEGV [amd64]

2017-06-07 Thread Lumin
Package: python3-numba Version: 0.33.0-1 Severity: severe Hi, It fails to run even the simplest code: ``` #!/usr/bin/python3 from numba import jit from numpy import arange import time @jit def sum2d(arr): M, N = arr.shape result = 0.0 for i in range(M): for j in range(N):