[sage-combinat-devel] trouble install sage-combinat with sage-5.10.rc0

2013-06-02 Thread Anne Schilling
Hello! Has something changed with installing sage-combinat with respect to sage-5.10.rc0. I get the following error message: ... [reference] dumping object inventory... done [reference] build succeeded. Build finished. The built documents can be found in

Re: [sage-combinat-devel] trouble install sage-combinat with sage-5.10.rc0

2013-06-02 Thread Nicolas M. Thiery
On Sun, Jun 02, 2013 at 09:53:54AM -0700, Anne Schilling wrote: Has something changed with installing sage-combinat with respect to sage-5.10.rc0. Hmm, not that I know of. I get the following error message: Switching to sage combinat root directory:

Re: [sage-combinat-devel] trouble install sage-combinat with sage-5.10.rc0

2013-06-02 Thread Anne Schilling
On 6/2/13 10:30 AM, Nicolas M. Thiery wrote: On Sun, Jun 02, 2013 at 09:53:54AM -0700, Anne Schilling wrote: Has something changed with installing sage-combinat with respect to sage-5.10.rc0. Hmm, not that I know of. I get the following error message: Switching to sage combinat root

[sage-devel] Re: LELA for matrices?

2013-06-02 Thread Dima Pasechnik
On 2013-06-01, Volker Braun vbraun.n...@gmail.com wrote: [...] On a related note, sparse matrices in Sage suck (dictionary of keys). Sparse matrices in LELA only suck slightly less (list of lists). For fast computation one should implement compressed sparse row/column, I think. IMHO one

Re: [sage-devel] LELA for matrices?

2013-06-02 Thread Charles Bouillaguet
On Jun 2, 2013, at 9:20 AM, Dima Pasechnik wrote: On 2013-06-01, Volker Braun vbraun.n...@gmail.com wrote: [...] On a related note, sparse matrices in Sage suck (dictionary of keys). Sparse matrices in LELA only suck slightly less (list of lists). For fast computation one should

[sage-devel] Re: GSoC New decoding error-correcting codes algorithm for Sage

2013-06-02 Thread P Purkayastha
@Veronica: Hello and welcome. I look forward to your contributions! On Sunday, June 2, 2013 6:19:13 AM UTC+8, mmarco wrote: Welcome on board, Veronica. Please keep us up to date to your progress. I am your mentor, but i am sure the rest of the sage community would like to have you

[sage-devel] Re: GSoC New decoding error-correcting codes algorithm for Sage

2013-06-02 Thread mmarco
I have emailed Harald about it. -- You received this message because you are subscribed to the Google Groups sage-devel group. To unsubscribe from this group and stop receiving emails from it, send an email to sage-devel+unsubscr...@googlegroups.com. To post to this group, send email to

[sage-devel] Re: recompilation with sage -clone and after sage -sync-build

2013-06-02 Thread leif
leif wrote: leif wrote: 4) Minimally adapt sage-sync-build.py to reflect the (hard-coded) change by #14570. [May be easy as well, but potentially unsafe.] Even that turns out to be non-trivial, AFAICS, i.e., the whole strategy would have to get changed, as opposed to just some file /

[sage-devel] Re: recompilation with sage -clone and after sage -sync-build

2013-06-02 Thread Travis Scrimshaw
Hey, Could we at least get the hacked sage-sync-build into 5.10? The combinat queue has a few patch which create new cython files that replace python files (i.e. cythonizes them) which requires the sync-build to be run when people are moving ahead of those patches. Rebuilding all cython

Re: [sage-devel] LELA for matrices?

2013-06-02 Thread Harald Schilly
On Sunday, June 2, 2013 10:01:01 AM UTC+2, Charles Bouillaguet wrote: http://docs.scipy.org/doc/scipy/reference/sparse.linalg.html yes, i just wanted to point to that. this is the list of implementations, i.e. CSC/CSR (compressed sparse columns or rows) is already there.

Re: [sage-devel] LELA for matrices?

2013-06-02 Thread Volker Braun
On Sunday, June 2, 2013 9:01:01 AM UTC+1, Charles Bouillaguet wrote: There is a presumably standard sparse-blas API : http://math.nist.gov/spblas/ Yes, though it doesn't seem to mandate any matrix storage format. So apparently you can't let it run on a given chunk of memory but you need

Re: [sage-devel] LELA for matrices?

2013-06-02 Thread Thierry Dumont
Le 02/06/2013 19:28, Volker Braun a écrit : On Sunday, June 2, 2013 9:01:01 AM UTC+1, Charles Bouillaguet wrote: There is a presumably standard sparse-blas API : http://math.nist.gov/spblas/ Yes, though it doesn't seem to mandate any matrix storage format. So apparently you can't let

Re: [sage-devel] LELA for matrices?

2013-06-02 Thread Volker Braun
On Sunday, June 2, 2013 7:58:05 PM UTC+1, tdumont wrote: - In that case, I recall that the main problem will be actually to *create* the CSR structure: you want to enter non zero coefficients (i,j)- a_ij in any order. The mechanism used by by scipy (and thus sage) is very very slow