Re: [sage-devel] ptestlong failures Sage-9.3

2021-05-18 Thread Richard_L
txt > which is > > openblas-devel > > Most probably the pc file for openblas will be there, and we would not > have to try solving this puzzle for you > > first do > > make openblas-clean > > to remove (broken?) Sage installation of > openblas. > > &g

Re: [sage-devel] ptestlong failures Sage-9.3

2021-05-17 Thread Richard_L
source. On Monday, May 17, 2021 at 9:08:07 AM UTC-7 dim...@gmail.com wrote: > > > On Mon, 17 May 2021, 16:42 Richard_L, wrote: > >> What I find in common for the 7 failures is: >> "/home/rllozes/sage-9.3/local/lib/libopenblas.so.0(zgemm_kernel_n+0x9d)[0x7f2b0f

Re: [sage-devel] ptestlong failures Sage-9.3

2021-05-17 Thread Richard_L
2:32:59 AM UTC-7 dim...@gmail.com wrote: > On Sun, May 16, 2021 at 4:26 PM Richard_L wrote: > > > > 'make ptestlong' gave the following error summary on a new build from > source: > > > > -- > >

[sage-devel] ptestlong failures Sage-9.3

2021-05-16 Thread Richard_L
'make ptestlong' gave the following error summary on a new build from source: -- sage -t --long --warn-long 103.3 --random-seed=0 src/sage/calculus/riemann.pyx # Killed due to illegal instruction sage -t --long --warn-long

Re: [sage-devel] RecursionError: maximum recursion depth exceeded during compilation

2020-12-15 Thread Richard_L
Thanks. On Tuesday, December 15, 2020 at 10:02:12 AM UTC-8 Michael Orlitzky wrote: > On 10/1/20 6:05 PM, Richard_L wrote: > > I get the above message when I ask SageMath 9.1 to swallow a large > > expression (attached file). Is anyone else seeing this message? > &g

[sage-devel] RecursionError: maximum recursion depth exceeded during compilation

2020-10-01 Thread Richard_L
I get the above message when I ask SageMath 9.1 to swallow a large expression (attached file). Is anyone else seeing this message? All variables are declared real. The message did not show up until I started using 9.1 For now, my workaround is to raise the recursion limit: import sys

[sage-devel] Re: Machine Learning people apparently built a symbolic integrator

2019-12-17 Thread Richard_L
> integrals > is to observe that the integral of a sum is the sum of the integrals, > there is > very little use for such a table. > > > On Monday, December 16, 2019 at 7:14:02 AM UTC-8, Richard_L wrote: >> >> Apparently, someone disagrees. See Ernest Lampl

Re: [sage-devel] Re: Machine Learning people apparently built a symbolic integrator

2019-12-16 Thread Richard_L
You could e-mail the authors, now that you have names and addresses. Maybe they'd part with source. On Monday, December 16, 2019 at 7:39:11 AM UTC-8, Dima Pasechnik wrote: > > > > On Mon, 16 Dec 2019, 15:14 Richard_L, > > wrote: > >> Apparently, someone disagrees.

[sage-devel] Re: Machine Learning people apparently built a symbolic integrator

2019-12-16 Thread Richard_L
Apparently, someone disagrees. See Ernest Lample's posting to the arXiv: https://arxiv.org/abs/1912.05752 On Friday, September 27, 2019 at 8:06:31 AM UTC-7, Dima Pasechnik wrote: > > https://openreview.net/pdf?id=S1eZYeHFDS > > I wish they had code available... > -- You received this message

[sage-devel] SageMath 8.8 with Jupyter shows 404 errors in terminal log

2019-08-21 Thread Richard_L
Since converting all my old noteboks over to Jupyter, and making pretty printing my default, I have seen 404 errors in the console log. These look something like: > 404 GET > /nbextensions/mathjax/fonts/HTML-CSS/TeX/otf/MathJax_AMS-Regular.otf > (127.0.0.1) 2.94ms >

Re: [sage-devel] Re: All input and output (notebook) appearing on stdout -- sage 8.8

2019-07-17 Thread Richard_L
Dima, If it were reproducible behavior, I would definitely post a notebook. As things stand, I think it best to wait for the problem to re-occur. As to your other questions, I run Firefox 60.7.2esr on openSUSE 42.3, and build with gcc 6.2.1. -- You received this message because you are

[sage-devel] Re: All input and output (notebook) appearing on stdout -- sage 8.8

2019-07-17 Thread Richard_L
That behavior seems to be transient. After closing down sage completely and restarting, the echo is no longer evident. I see that, just before the echoing began, there is a crash message: 2019-07-17T11:47:54-0700 [__builtin__.QuietSite#info] Starting factory <__builtin__.QuietSite instance at

[sage-devel] All input and output (notebook) appearing on stdout -- sage 8.8

2019-07-17 Thread Richard_L
I have just built sagemath 8.8, with no errors during build or during testing (ptestlong). Now when I run previous notebooks, I see that all input and output is echoed to stdout (console). This is new behavior since sagemath 8.5, which is what I ran until today. Is this a 'feature' of this

[sage-devel] Error with Parallelism, case of nproc>1

2019-03-14 Thread Richard_L
Continuing with the example first discussed on ask.sagemath.org and graciously corrected/answered by Eric G, I now find that setting *nproc* to anything but *1* in the following will cause the last line to give incorrect results. I am running sagemath version 8.5. According to trac, this

Re: [sage-devel] Re: Scalar field on manifold not completely initialized?

2019-02-27 Thread Richard_L
+1 for "_SAGE_FUNC". The user should not have to think about the Maxima pre-defined name space unless s/he wants to use a Maxima function: "When I use a word, it means what I choose it to mean, neither more nor less." -- Humpty-Dumpty On Tuesday, February 26, 2019 at 10:33:23 AM UTC-8, Nils

[sage-devel] Re: Scalar field on manifold not completely initialized?

2019-02-23 Thread Richard_L
Thanks, Eric. I never would have guessed that I could not use the most common notation in quantum mechanics! -- 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] Scalar field on manifold not completely initialized?

2019-02-22 Thread Richard_L
I set up a 3-dimensional Euclidean manifold, defining both Cartesian and spherical coordinates, charts, and frames.. Next, I define a scalar field: > psi = E.scalar_field({c_E: function('psi')(r,th,ph)}, > name='psi',latex_name='\psi') > See attached file "Euclid.sage" for details Now,

[sage-devel] Re: Scalar field on manifold not completely initialized?

2019-02-22 Thread Richard_L
I neglected to note that I am running 'SageMath version 8.5, Release Date: 2018-12-22' -- 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] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-20 Thread Richard_L
Is this potentially the same bug as Maxima's #3324? (to which both Robert and Nils contributed last year) Advice please: Should I start a new ticket at Maxima, or add to the old one? Thanks On Wednesday, June 20, 2018 at 11:57:58 AM UTC-7, Richard_L wrote: > > Thank you. > Now

[sage-devel] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-20 Thread Richard_L
Thank you. Now to report the bug. On Wednesday, June 20, 2018 at 11:15:36 AM UTC-7, Nils Bruin wrote: > > On Wednesday, June 20, 2018 at 10:12:24 AM UTC-7, Richard_L wrote: >> >> ..."domain:complex" is not the default for which code: Maxima or Sage? >> >

[sage-devel] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-20 Thread Richard_L
at it happens before I get the sage prompt. (Otherwise the override would get stomped on.) On Wednesday, June 20, 2018 at 8:33:56 AM UTC-7, Nils Bruin wrote: > > On Wednesday, June 20, 2018 at 7:15:11 AM UTC-7, Richard_L wrote: >> >> Thank you! maxima_calculus.eval(&qu

[sage-devel] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-20 Thread Richard_L
e same bug. On Tuesday, June 19, 2018 at 3:22:07 PM UTC-7, Nils Bruin wrote: > > On Tuesday, June 19, 2018 at 2:30:46 PM UTC-7, Richard_L wrote: >> >> It would be useful if one could override Sage's default "domain:complex", >> at least until the Maxima fix comes through.

[sage-devel] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-19 Thread Richard_L
There are several ways to avoid the seg-fault. Consider this script: > display2d:false$ > domain:complex; /*setting domain to real causes success in > all cases below*/ > declare([m1,m2,m3],real); > declare([r12,r13,r23],real); > assume(r12>0,r13>0,r23>0); > assume(r12

[sage-devel] Re: Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-18 Thread Richard_L
See also Robert Dodier's related thread showing that Maxima seems not to be the culprit. -- 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] Re: Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-18 Thread Richard_L
See also Robert Daudier's related thread showing that Maxima seems not to be the culprit. -- 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] Re: Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-18 Thread Richard_L
I attach here 1. a stripped-down Sage script, 2. a PDB script which leads to the failing statement. The failing Sage code reads: > > > /home/rllozes/Development/sage/local/lib/python2.7/site-packages/sage/interfaces/maxima_lib.py(452)_eval_line() > -> result = ((result + '\n') if

[sage-devel] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-18 Thread Richard_L
I will post the failing Sage call on the original thread, along with the full PDB script. -- 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] Re: Re; Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-18 Thread Richard_L
That appears to be what I'm running via the Sage interface: [sage-beta is my soft-link to sage-8.3-beta5] rllozes@linux-yzi3:~/temp> sage-beta --maxima ;;; Loading #P"/home/rllozes/Development/sage/local/lib/ecl/sb-bsd-sockets.fas" ;;; Loading

[sage-devel] Re: Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-14 Thread Richard_L
I can find. - Richard On Thursday, June 14, 2018 at 3:13:55 PM UTC-7, Nils Bruin wrote: > > On Thursday, June 14, 2018 at 1:45:12 PM UTC-7, Richard_L wrote: >> >> >> Might anyone have a work-around please? >> >> Delete the assumptions and the domain decl

[sage-devel] Symbolic matrix inverse still gives seg-fault, core-dump

2018-06-14 Thread Richard_L
Last year I reported failure of this simple matrix inversion. Despite an updated Maxima (8.3.beta3), this problem persists. I attach the simplest sage source causing the error, along with a log. Given that the error messages are identical to last year, I conclude that maxima / ECL is still the

Re: [sage-devel] Core dumps during build considered normal?

2018-01-12 Thread Richard_L
I apologize for the noise! You are quite right: according to the timestamps, this occurred during "make ptestlong", which I started a few minutes after building completed. On Friday, January 12, 2018 at 1:59:04 AM UTC-8, Jeroen Demeyer wrote: > > On 2018-01-10 21:41, Richard

[sage-devel] Core dumps during build considered normal?

2018-01-10 Thread Richard_L
I happened to look through my system's dump log and discovered that building Sage, at least as far back as 8.0, consistently and silently dumps core 11 times (give or take). Here is a snip from the dump log, showing the latest build I did: TIMEPID UID GID SIG

[sage-devel] Re: ECL says: THROW: The catch RAT-ERR is undefined

2017-11-27 Thread Richard_L
At this point it appears two tickets are warranted: 1. Modify simplify_trig() (and its siblings) to scan the input expression to see if there's any reason to call Maxima. 2. Incorporate a newer version of Maxima and its associated ECL/SBCL. Anything else, for example, THROW/CATCH logic

[sage-devel] Re: ECL says: THROW: The catch RAT-ERR is undefined

2017-11-26 Thread Richard_L
Ralf, Do we have a convention concerning calls to upstream packages like maxima? That is, which side of the interface is responsible for the scan to determine whether the main code invoked upstream should be executed: the caller (in this case manifolds.utilities) or the callee (in this case

[sage-devel] Re: ECL says: THROW: The catch RAT-ERR is undefined

2017-11-26 Thread Richard_L
, 2017 at 2:19:34 AM UTC-8, Dima Pasechnik wrote: > > > > On Sunday, November 26, 2017 at 8:16:53 AM UTC, Ralf Stephan wrote: >> >> On Sunday, November 26, 2017 at 12:54:04 AM UTC+1, Richard_L wrote: >>> >>> Calling ...simplify_trig() results in a traceback,

[sage-devel] ECL says: THROW: The catch RAT-ERR is undefined

2017-11-25 Thread Richard_L
Calling ...simplify_trig() results in a traceback, somewhat elided here: Traceback (most recent call last): File "/home/rllozes/Development/sage/local/lib/python2.7/site-packages/sage/manifolds/differentiable/metric.py", line 692, in inverse self._inverse._restrictions[dom] =

[sage-devel] Re: manifolds.utilities.py: ExpressionNice()

2017-11-19 Thread Richard_L
, Richard_L wrote: > > Thank you. I missed that in the examples. Is there documentation listing > all Manifold.options? I cannot find one with the documentation search. > > On Saturday, November 18, 2017 at 3:40:41 PM UTC-8, Eric Gourgoulhon wrote: >> >> HI, >> >>

[sage-devel] Re: manifolds.utilities.py: ExpressionNice()

2017-11-18 Thread Richard_L
Thank you. I missed that in the examples. Is there documentation listing all Manifold.options? I cannot find one with the documentation search. On Saturday, November 18, 2017 at 3:40:41 PM UTC-8, Eric Gourgoulhon wrote: > > HI, > > Le samedi 18 novembre 2017 23:55:35 UTC+1, Richa

[sage-devel] manifolds.utilities.py: ExpressionNice()

2017-11-18 Thread Richard_L
Applying ExpressionNice() to an expression containing partial derivatives cleans up the presentation, suppressing the display of function arguments in the partial derivatives. However, zeroth order derivatives (i.e., the function alone) are not cleaned up. I think it would be useful to extend

[sage-devel] Re: VOTE: inclusion of OpenSSL in Sage

2017-10-17 Thread Richard_L
[X] Require OpenSSL to be installed on the system. This sidesteps the whole license issue and, since more bugs are sure to be found, we do not have to keep yet another package up to date. -- You received this message because you are subscribed to the Google Groups "sage-devel" group. To

[sage-devel] Re: lib*.so conflict

2017-09-01 Thread Richard_L
Removing system-wide R has no effect on ptestlong. The same three failures occur. I'm out of ideas and out of time to work on this. For now, I will redirect the libreadline symlink to that belonging to the system, and get back to mathematical physics! Thanks for your efforts, - Richard On

[sage-devel] Re: lib*.so conflict

2017-08-31 Thread Richard_L
Both r-3.4.0.p0.log and rpy2-2.8.2.p0.log show sh: /home/rllozes/Development/sage/local/lib/libreadline.so.6: no version information available (required by sh) With or without restoring my hacked symlink to its original state, ldd local/lib/R/lib/libR.so and ldd

[sage-devel] Re: lib*.so conflict

2017-08-31 Thread Richard_L
No. LD_LIBRARY_PATH is not set. The curious thing is that there are 29 lib*.so in the sage/local/lib folder that are in common with the system /lib64 folder, although not necessarily of the same version/sub-version. Only libreadline.so gives trouble during make ptestall. NB! Just grep'd all

[sage-devel] lib*.so conflict

2017-08-30 Thread Richard_L
As I observed on the sage-release Sage.8.1.beta3 thread, a library conflict causes 'make ptestlong' to fail under openSUSE LEAP 42.2. Reworking the offending symlink in the sage installation to point to the system library fixes the problem. The two copies of "libreadline.so.6.3" are NOT

Re: [sage-devel] Failure to patch gf2x-1.2 during build

2017-08-14 Thread Richard_L
; > In short, don’t do that again. > > François > > > On 14/08/2017, at 13:20, Richard_L <rich...@lozestech.com > > wrote: > > > > Downloaded sage-8.1-beta-1, dropped into a clean copy of sage-8.0, and > tried to make. > > Received message > >

[sage-devel] Failure to patch gf2x-1.2 during build

2017-08-13 Thread Richard_L
Downloaded sage-8.1-beta-1, dropped into a clean copy of sage-8.0, and tried to make. Received message Makefile:1709: recipe for target '/home/rllozes/sage-8.1-beta-1/local/var/lib/sage/installed/gf2x-1.2' failed Log file attached. My system: openSUSE Leap 42.2 kernel: 4.4.79-18.23-default

[sage-devel] Re: SIGSEGV in Maxima

2017-08-11 Thread Richard_L
Clearly Robert has found a bug in maxima. Here's a little test further to my earlier "puzzle": If I write in sage as follows: #$is (equal(-(_SAGE_VAR_r13^2*_SAGE_VAR_r23-_SAGE_VAR_r23^3)/((-_SAGE_VAR_r23^4)+2*_SAGE_VAR_r13^2*_SAGE_VAR_r23^2-_SAGE_VAR_r13^4+_SAGE_VAR_r12^4),0))$ var('r12 r13

[sage-devel] Re: SIGSEGV in Maxima

2017-08-11 Thread Richard_L
+oo)") One therefore expects r12, etc. to be real. - Richard On Thursday, August 10, 2017 at 10:34:40 PM UTC-7, Robert Dodier wrote: > > On 2017-08-10, Richard_L <rich...@lozestech.com > wrote: > > > The following string sent to maxima causes a seg-fault and c

Re: [sage-devel] Re: SIGSEGV in Maxima

2017-08-11 Thread Richard_L
Eric, I will be happy to test as soon as source code is modified. Just let me know. - Richard On Friday, August 11, 2017 at 2:22:24 AM UTC-7, Eric Gourgoulhon wrote: > > Hi, > > Le vendredi 11 août 2017 08:12:42 UTC+2, David Roe a écrit : >> >> Note that this is changed in

[sage-devel] SIGSEGV in Maxima

2017-08-10 Thread Richard_L
The following string sent to maxima causes a seg-fault and core dump: > /home/rllozes/sage-8.0/local/lib/python2.7/site-packages/sage/interfaces/maxima_lib.py(452)_eval_line() 450 line = line[ind_semi+1:] 451 if statement: 2-> 452

[sage-devel] sage-8.0 errors in config.log

2017-07-24 Thread richard_l
I have now built sage-8.0 on two openSUSE systems, one with gcc 5.3.1 and one with gcc 4.8.5. In both cases I find errors relating to the compiler in config.log. Examples: configure:3987: gcc -V >&5 gcc: error: unrecognized command line option '-V' gcc: fatal error: no input files compilation