Working with Maxima built from commit 3a26747 with SBCL 2.3.7 on Ubuntu 16.04. Running the test suite twice, once with share_tests = true, leads to an out of memory error in either rtest_ctensor or rtest_itensor (seems to vary).
(%i1) run_testsuite (); run_testsuite (share_tests = true);
Testsuite run for SBCL 2.3.7:
Running tests in rtest_sqdnst: 13/13 tests passed
Running tests in rtest_extensions: 18/18 tests passed
Running tests in rtest_rules: 210/210 tests passed
[... etc etc ...]
Running tests in rtest_ilt: 31/31 tests passed
Running tests in ulp_tests: 63/63 tests passed
No unexpected errors found out of 13,463 tests.
Evaluation took:
108.034 seconds of real time
107.751332 seconds of total run time (102.396675 user, 5.354657 system)
[ Real times consist of 4.411 seconds GC time, and 103.623 seconds non-GC time. ]
[ Run times consist of 4.406 seconds GC time, and 103.346 seconds non-GC time. ]
99.74% CPU
9,620 forms interpreted
12,149 lambdas converted
248,913,931,560 processor cycles
37,916,342,224 bytes consed
(%o0) done
(%i1) Testsuite run for SBCL 2.3.7:
Running tests in rtest_sqdnst: 13/13 tests passed
Running tests in rtest_extensions: 18/18 tests passed
Running tests in rtest_rules: 210/210 tests passed
[... etc etc ...]
Running tests in rtest_bernstein: 44/44 tests passed
Running tests in rtest_atensor: 20/20 tests passed
Running tests in rtest_ctensor: Thread local storage exhausted.
fatal error encountered in SBCL pid 15290 tid 15290:
%PRIMITIVE HALT called; the party is over.
Welcome to LDB, a low-level debugger for the Lisp runtime environment.
ldb>
I tried some variations of run_testsuite and that combination is what I found that seems to cause the error repeatably.
I haven't tried to figure out what operation in rtest_ctensor or rtest_itensor is the immediate cause of the out of memory error. Possibly simplification rules? Just a wild guess.
I don't think this has anything to do with tensors. I just ran the same thing with SBCL 1.4.0 on CentOS 7 and I got a memory exhaustion error in rtest16.
As a matter of fact, we don't even need to include the share tests, and using a kill(all) between the two runs makes no difference either (I thought it might fix things):
For what it's worth, I learned a long time ago that running the testsuite twice in the same session only invites trouble.
My guess is that this out of memory actually is an indicator for a real problem, even if I don't know if it is to be called a bug: Maxima loves special variables, but SBCL reserves only a small memory portion for the thread-local storage they are placed in. In my daily work I run out of thread-local memory every few months and matchdeclare seems to cause such out of memories quickly.
sbcl 1.5.2 claims to have boosted thesize of said memory to 4096 objects and added a command-line switch (--tls-limit) that allows to further increase it. 4096 variables and lost items looks like being not much => perhaps our build system should boost that number if s cl is new enough to understand that command-line switch.
I think we need to know in more detail what is going on with thread local storage for special variables or something like that. If that is the origin of the problem or at least a contributing factor, it should be possible to measure the storage allocation (I don't know how to do that for SBCL, I assume it is possible) every now and then and show that it increases until it fails with an error.
Yeah, I think I've bumped into similar errors before. I'd like to try to at least identify what is the source of the error, even if it's something that we can't or won't fix.
I bumped into this error because I've been doing a lot of testing for the Unicode pretty printer. It is a bit of a nuisance to run into unrelated errors while trying to test some new code ...
I've edited the title to omit mention of the tensor tests.
configure.acalready seems to boost sbcl's number of thread-local symbols to a value that allows to run the test suite once:The question now is: Should we increase that value from 8192 to 16384 - or should we try to find out if we somewhere unnecessarily generate such symbols and therefore can catch this problem at its root?
Weird: In my local maxima copy I increased the size of the thread-local memory storage from 8192 to 16384. Now running the testsuite a second time causes a call stack overflow => we might get trapped here in an infinite recursive function call or something.
It is quite unclear what exactly is going on, therefore it is too early to start adjusting configuration parameters in hopes of avoiding the problem.
If you are interesting in pursuing the possibility that thread local memory allocation or generated symbols or any other specific cause is at the root of the problem, please investigate with whatever tools are available (I don't know what those might be) and please report what you find, and we'll go from there.
Agree with Dodier. We need to find the memory leak, not ignore it by
increasing allocations.
Last edit: Robert Dodier 2023-12-30
FWIW, clisp, cmucl and ecl can run the main testsuite at least twice without errors. But I'm using the current HEAD version for this. Don't know if that matters.
ecl and clisp might not matter too much matter with respect to a memory leak as they don't limit the amount of special variables.
Using Maxima compiled with Clozure CL 1.12.2, I tried running
After the first running of the testsuite, room reports
After the second
After the third
And again
that would indicate that Maxima doesn't have a huge memory leak, but it can still have a small memory leak in the places SBCL assignes a small fixed-size memory buffer to: it does do so for special variables (by default it can keep only 4096 or so of them), the call stack and the - was it binding stack?
If you build SBCL with the lisp feature
SB-DEVEL, then the functiondump-threadis enabled.It shows the values of TLS while SBCL is running.
For example:
About debugging, see also SB-VM::SHOW-ALL-TLS-INDEXED-SYMBOLS as defined in: https://sourceforge.net/p/sbcl/sbcl/ci/84bd6884dda719158a46e014e4e48d2ac18fd5f3/
That function also requires SBCL to be built
--with-sb-devel.Fixed by commit [a84283].
Related
Commit: [a84283]