Skip to content

Potential SegFault with multithreading garbage collection. #101975

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
gaogaotiantian opened this issue Feb 17, 2023 · 7 comments
Closed

Potential SegFault with multithreading garbage collection. #101975

gaogaotiantian opened this issue Feb 17, 2023 · 7 comments
Labels
interpreter-core (Objects, Python, Grammar, and Parser dirs) type-crash A hard crash of the interpreter, possibly with a core dump

Comments

@gaogaotiantian
Copy link
Member

gaogaotiantian commented Feb 17, 2023

For now, I can only occationally observe the segfault on github actions. This is an issue that's not easy to reproduce, but I tried to understand the cause of it.

The direct cause would be in deduce_unreachable in gcmodule.c. In that function, gc tries to find cycles by traversing objects, including frame, which uses _PyFrame_Traverse for all its objects. In _PyFrame_Traverse, it uses frame->stacktop as the index range for all the locals and temporary data on stack(not sure if that's on purpose). However, frame->stacktop is not updated in real-time, which means the object it traverses might not be valid.

For example, in FOR_ITER dispatch code, there's a Py_DECREF(iter); STACK_SHRINK(1); when the iterator is exhausted. However, STACK_SHIRNK only increases stack_pointer, not frame->stacktop. At this point, the iter that's just freed will be traversed during garbage collection.

There might be something I missed because it's not trivial to reproduce this, but I got a demo that could reproduce this issue occasionally.

from multiprocessing import Pool
import sys

def tracefunc(frame, *args):
    a = 100 ** 100


def pool_worker(item):
    return {"a": 1}


def pool_indexer(path):
    item_count = 0
    with Pool(processes=8) as pool:
        for i in pool.imap(pool_worker, range(1, 2000), chunksize=10):
            item_count = item_count + 1


sys.setprofile(tracefunc)
pool_indexer(10)

It might have something to do with the profile function, I think I can only reproduce this with it. You need to enable --with-address-sanitizer to find an error of ERROR: AddressSanitizer: heap-use-after-free on address. Normally in Py_TYPE Include/object.h:135, where the code dereferenced ob, which could be freed already.

The memory it points to is often benign so I'm not able to reliably generate SegFaults, but in theory, this is a memory violation.

Python Version: cpython/main
OS Version: Ubuntu 20 on WSL

Linked PRs

@gaogaotiantian gaogaotiantian added the type-crash A hard crash of the interpreter, possibly with a core dump label Feb 17, 2023
@arhadthedev arhadthedev added the interpreter-core (Objects, Python, Grammar, and Parser dirs) label Feb 17, 2023
@carljm
Copy link
Member

carljm commented Feb 17, 2023

I believe in main branch GC now runs only at eval breaker? So one possible approach here would be to update stacktop on eval breaker, not sure how expensive that would be.

@gaogaotiantian
Copy link
Member Author

Some extra context here.

For my specific case, adding _PyFrame_SetStackPointer(frame, stack_pointer); after STACK_SHRINK(1) in FOR_ITER fixed the issue, which probably implied that the unupdated stack pointer is the reason that caused this. Disabling gc in general can also avoid this issue.

Adding _PyFrame_SetStackPointer(frame, stack_pointer); before _Py_HandlePending (which gives out gil?) did not fix the problem, presumably because it could be in a different frame? Iterating through all the frames might work, I did not try.

@gaogaotiantian
Copy link
Member Author

Okay I think I finally got this.

This problem only happens when the profile/trace function is enabled, and is related to garbage collection. I believe it's because in TRACE_FUNCTION_ENTRY macro, frame->stacktop is not set to -1 so garbage collection could ignore it.

This is done in the very similar code in ceval.c. I added the line in #102803 and it fixed the issue.

@markshannon could you take a look at this because you wrote the original code and I think it would be pretty obvious to you if this fix is correct.

@markshannon
Copy link
Member

Thanks for taking the time to find and fix this.

@erlend-aasland
Copy link
Contributor

Is there more work left here, or can we close this?

@BreakingLead

This comment was marked as spam.

@ziegenbalg
Copy link

ziegenbalg commented Jan 13, 2024

Pretty sure I just stumbled across this as well. Python 3.10.8. Fedora 35. What version was this fixed in?

Edited 2024-01-141.

Jan 12 19:20:05 ob systemd-coredump[3608865]: Process 3607439 (python) of user 1001 dumped core.
                                              
                                              Found module linux-vdso.so.1 with build-id: 1bf57cefdf3b2693754ee52a9d6a1e1af09a00bb
                                              Found module libsqlite3.so.0 with build-id: 072b1e135c03359061ea9c8346cdb61528950924
                                              Found module _sqlite3.cpython-310-x86_64-linux-gnu.so with build-id: 6bc1857ae90a75bd69794fee0eb5240f18b6a1e7
                                              Found module libexpat.so.1 with build-id: f732d4b5357d2e0e7e1e6b817349ca03779b057f
                                              Found module pyexpat.cpython-310-x86_64-linux-gnu.so with build-id: 69ccb044e5eeee4495eea35e6b22321702c2dc7f
                                              Found module _speedups.cpython-310-x86_64-linux-gnu.so with build-id: f8ece345c5cdce204e3b14e5139f298478218eaf
                                              Found module speedups.cpython-310-x86_64-linux-gnu.so with build-id: 959c7fe5bc9373f57553bc6fbe2a7d95b47cb081
                                              Found module tools.cpython-310-x86_64-linux-gnu.so with build-id: efbef1d8b3c4c5f70e1420341e0d313aca99e91c
                                              Found module env_settings.cpython-310-x86_64-linux-gnu.so with build-id: f2eab3f5d34f5ae52d8114c5aacfdfebbc407abd
                                              Found module decorator.cpython-310-x86_64-linux-gnu.so with build-id: d6827fd5a85fbc80f5c8d191f2d8d8d5d68abf4c
                                              Found module annotated_types.cpython-310-x86_64-linux-gnu.so with build-id: a627dd881d169dd1859f92153adfe3b7f9d262d3
                                              Found module schema.cpython-310-x86_64-linux-gnu.so with build-id: 7bba8f1d53d686f839c44c7e8a9b7596ac80563b
                                              Found module parse.cpython-310-x86_64-linux-gnu.so with build-id: 17dd4c4c23e3ed10bcd3db06b35275271beaedbf
                                              Found module main.cpython-310-x86_64-linux-gnu.so with build-id: 4f40b6e94576de0d31eec1915928f70389d055c8
                                              Found module fields.cpython-310-x86_64-linux-gnu.so with build-id: e073dc012f1577ca5a79f06a43b918ca0ddace97
                                              Found module types.cpython-310-x86_64-linux-gnu.so with build-id: 7662b9988ecae487256245c9008ab8a85e633a82
                                              Found module datetime_parse.cpython-310-x86_64-linux-gnu.so with build-id: 102175af4ea5645aa0e7f99ec00b474cb508a7d1
                                              Found module validators.cpython-310-x86_64-linux-gnu.so with build-id: de7e09ad4682fd984dde5bb11627887a992a49dc
                                              Found module networks.cpython-310-x86_64-linux-gnu.so with build-id: 38d2c37ffcbfe78c037a2561ea420f3ca7052d10
                                              Found module color.cpython-310-x86_64-linux-gnu.so with build-id: 5c1eb85e9e64a4ac99718e657db68ac948e10a10
                                              Found module json.cpython-310-x86_64-linux-gnu.so with build-id: fd9dd271f59c1c4ed4151721d9e4986bbbfa25d9
                                              Found module error_wrappers.cpython-310-x86_64-linux-gnu.so with build-id: eb1884ad6bd3443d8222d8fb9a1b043a9229c4c5
                                              Found module config.cpython-310-x86_64-linux-gnu.so with build-id: cc01d1dfb7a182276d0dcaea6f649b0fa464836a
                                              Found module version.cpython-310-x86_64-linux-gnu.so with build-id: 69f842c2e1bfd5053ee53984ee4cd7a6fb3e14fa
                                              Found module utils.cpython-310-x86_64-linux-gnu.so with build-id: d1f747c948ae1efad55f73b1fd3e97f23f49c29f
                                              Found module typing.cpython-310-x86_64-linux-gnu.so with build-id: d17664300b683b3aa355825ba78ad02f63b68b78
                                              Found module errors.cpython-310-x86_64-linux-gnu.so with build-id: 8e85a9475777f3863998968038f5793580d8b483
                                              Found module class_validators.cpython-310-x86_64-linux-gnu.so with build-id: 88d1d548ac4819cc4e3584845368b995c708c234
                                              Found module dataclasses.cpython-310-x86_64-linux-gnu.so with build-id: 11cd7f1d0924456b4b86a1d414532b0f444b2c74
                                              Found module __init__.cpython-310-x86_64-linux-gnu.so with build-id: c2b61aac11e2cd2588a0d4dbd06409987490d10e
                                              Found module _cmsgpack.cpython-310-x86_64-linux-gnu.so with build-id: b12688b5c0e8fad744da78bf64542881f643a519
                                              Found module _frozenlist.cpython-310-x86_64-linux-gnu.so with build-id: 245191022d304b3bf0a71d3477a58ca60bd614dc
                                              Found module _websocket.cpython-310-x86_64-linux-gnu.so with build-id: 0024cc2cb9de82a0c7bd7563dc11ad9094eaf4a2
                                              Found module _http_parser.cpython-310-x86_64-linux-gnu.so with build-id: d90034b0b4c49670fc51048361699803ae6b0f1b
                                              Found module _http_writer.cpython-310-x86_64-linux-gnu.so with build-id: d084ce6761c1b9b9d24472a4c61cfc7abd451b11
                                              Found module _helpers.cpython-310-x86_64-linux-gnu.so with build-id: e9e2e6a50c64df20fd3549d2c89bc8960ab7bdc6
                                              Found module _quoting_c.cpython-310-x86_64-linux-gnu.so with build-id: c23d94825e11770a0160aafef72e632a2a6ec491
                                              Found module _asyncio.cpython-310-x86_64-linux-gnu.so with build-id: 0c5f7b8210c7eef51d54857c5992bf0371c35577
                                              Found module _contextvars.cpython-310-x86_64-linux-gnu.so with build-id: 65a7d5811bb0403d480e85dd7f4a5954e280db8d
                                              Found module _multidict.cpython-310-x86_64-linux-gnu.so with build-id: 672f844889d6ff741b5d257d45cd522098e66c65
                                              Found module _multibytecodec.cpython-310-x86_64-linux-gnu.so with build-id: d7ac678d50da6a635331943334125f471e16740f
                                              Found module libssl.so.1.1 with build-id: 908866f88b06bfa3b935e976f00b30362f7df5fc
                                              Found module _ssl.cpython-310-x86_64-linux-gnu.so with build-id: 8009c6c7c64cc179e46253b19e59fd7fc1d4eaee
                                              Found module json.cpython-310-x86_64-linux-gnu.so with build-id: 6168312ef74f59d47bc6da96f3def37b7789b982
                                              Found module parsers.cpython-310-x86_64-linux-gnu.so with build-id: bac1546e195872bf577c9e5ce4f050581562dfc5
                                              Found module cmath.cpython-310-x86_64-linux-gnu.so with build-id: 52062c4f568047441eb439446be21ac937414c63
                                              Found module testing.cpython-310-x86_64-linux-gnu.so with build-id: dcce2d1ca5aa69df91858c54a3540ba84a826564
                                              Found module groupby.cpython-310-x86_64-linux-gnu.so with build-id: fd2d27678fef269d3d8e5ab88eea7da5838b515f
                                              Found module strptime.cpython-310-x86_64-linux-gnu.so with build-id: 402fe8d10c72d5975267ccf1d93f0370b8e80edc
                                              Found module reshape.cpython-310-x86_64-linux-gnu.so with build-id: 8029a1951a59ea4d890bf2a85fd9472a29b6b5df
                                              Found module indexers.cpython-310-x86_64-linux-gnu.so with build-id: 19c4fcd2c47ca7879fb92da70b436f2451b36ce4
                                              Found module libstdc++.so.6 with build-id: b4f2500414030d73619ef9ed35e0de7fa62340a5
                                              Found module aggregations.cpython-310-x86_64-linux-gnu.so with build-id: a123e3d9ce5aa0cdeffe1e0f1b5ca02009df5008
                                              Found module grp.cpython-310-x86_64-linux-gnu.so with build-id: e2c3976cff088caf8bd693ff828d8cdea880e8bf
                                              Found module mmap.cpython-310-x86_64-linux-gnu.so with build-id: 5a6d023494360b675e3e0cca6a610cf5f3b64cff
                                              Found module writers.cpython-310-x86_64-linux-gnu.so with build-id: 14c981322098b69659f3e9e6363fec70ae5c1cda
                                              Found module internals.cpython-310-x86_64-linux-gnu.so with build-id: cbe0b6f75263c568956e5a6e9cc0f231b2a57849
                                              Found module indexing.cpython-310-x86_64-linux-gnu.so with build-id: 5d59066bf39519b753c1779f9fe2aee9df614ba3
                                              Found module reduction.cpython-310-x86_64-linux-gnu.so with build-id: a8d2e9f8b4cc929c5e37cbcdad4a31dd0b1c6053
                                              Found module sparse.cpython-310-x86_64-linux-gnu.so with build-id: a0923d08f94c05ce8d5107f2a57928217d7dda3a
                                              Found module join.cpython-310-x86_64-linux-gnu.so with build-id: 5ee0f3a8fc7949771dfaeb9bb6be9f38d9ba1d33
                                              Found module index.cpython-310-x86_64-linux-gnu.so with build-id: 17c085507517466cf34edacc30561902ff9ddcc7
                                              Found module arrays.cpython-310-x86_64-linux-gnu.so with build-id: e825f5bf143b4059f333645316c10ab051d3ce14
                                              Found module _csv.cpython-310-x86_64-linux-gnu.so with build-id: a494b9d9a2cdbb31dc58c70ae8054a93282548f2
                                              Found module ops.cpython-310-x86_64-linux-gnu.so with build-id: bb9fc87c7ae33c377ebdea3471bf7b3e2f4eb461
                                              Found module hashing.cpython-310-x86_64-linux-gnu.so with build-id: 0e4b3fcad68fd684b13d815f41a90a18eadaa2da
                                              Found module tslib.cpython-310-x86_64-linux-gnu.so with build-id: 0361e9e65df17b9a6a572c4ed4b80cc789729175
                                              Found module lib.cpython-310-x86_64-linux-gnu.so with build-id: 5702a0539d3c4be1ada9cb211b0e6992fbab496f
                                              Found module algos.cpython-310-x86_64-linux-gnu.so with build-id: fa8e0b86b2da68b0aa66d43761ba21dadce186fe
                                              Found module ops_dispatch.cpython-310-x86_64-linux-gnu.so with build-id: 2759ff745e1be06aeca72e58d805c8d7d82f1c8e
                                              Found module vectorized.cpython-310-x86_64-linux-gnu.so with build-id: b9a3a36d6b659c1501bddb758e102b33040467a3
                                              Found module period.cpython-310-x86_64-linux-gnu.so with build-id: b53e997c1ad92b354fb9164b8f1ff2fbc58fa60d
                                              Found module properties.cpython-310-x86_64-linux-gnu.so with build-id: e77c3143ddb7ca47cc12e693a40b77a351b8a312
                                              Found module timestamps.cpython-310-x86_64-linux-gnu.so with build-id: b970b0802d9f132d6b20fa616601989e5918c085
                                              Found module ccalendar.cpython-310-x86_64-linux-gnu.so with build-id: 4efa252bb8933879a1cf7ff96520971667a8559c
                                              Found module fields.cpython-310-x86_64-linux-gnu.so with build-id: 5bcd1e6f640b41ffe6b5804327b01e7b45548c75
                                              Found module timedeltas.cpython-310-x86_64-linux-gnu.so with build-id: 0b55316988896185b3c3bae4b2a0ab87d1a58103
                                              Found module offsets.cpython-310-x86_64-linux-gnu.so with build-id: 5ae38064ed9ce956ad640fb14e7dc827cea0c7dc
                                              Found module parsing.cpython-310-x86_64-linux-gnu.so with build-id: 1221efbf0d09f18464a1e2de486072ff04a3c035
                                              Found module timezones.cpython-310-x86_64-linux-gnu.so with build-id: 6a54b0dca3dacbed87b550f3c286533eaee52f89
                                              Found module tzconversion.cpython-310-x86_64-linux-gnu.so with build-id: ebd76a2f20e010fb44fac86bbca3e5b0ec1aa4a0
                                              Found module nattype.cpython-310-x86_64-linux-gnu.so with build-id: 322e971e8617248de4b71f7eaf56dfa6fc5dc644
                                              Found module base.cpython-310-x86_64-linux-gnu.so with build-id: c7d45c41d58184c88c410e89f07030916fd0a619
                                              Found module conversion.cpython-310-x86_64-linux-gnu.so with build-id: 724005b9d510c85131e4db6798d08053d98f260a
                                              Found module np_datetime.cpython-310-x86_64-linux-gnu.so with build-id: a9819712d6de1f64c1ca89fda299fae7e0dc7a2b
                                              Found module dtypes.cpython-310-x86_64-linux-gnu.so with build-id: e2bef92af333d4c76187e602c1c988d694fb9b3f
                                              Found module missing.cpython-310-x86_64-linux-gnu.so with build-id: 0d841cd134c2ac6c75aafca279bbf52f42bcfa21
                                              Found module hashtable.cpython-310-x86_64-linux-gnu.so with build-id: 09c2c201a9768762b57645f6189062898faeb961
                                              Found module interval.cpython-310-x86_64-linux-gnu.so with build-id: 9206ef16943e2dedcddb08e211e619a1afb28206
                                              Found module _generator.cpython-310-x86_64-linux-gnu.so with build-id: ed225ac2ce70d3d6af03b78c26a7b39ca30f3120
                                              Found module _sfc64.cpython-310-x86_64-linux-gnu.so with build-id: 48c0ff602e265de99a7d7f9c5bb0c9e9ed7c2859
                                              Found module _pcg64.cpython-310-x86_64-linux-gnu.so with build-id: c2d529ea6709b8d32d2fdb0d27a505cb7cd55ec3
                                              Found module _philox.cpython-310-x86_64-linux-gnu.so with build-id: b412e81a80d88b2e2c97d3943d62d6c8d7c1d39a
                                              Found module _mt19937.cpython-310-x86_64-linux-gnu.so with build-id: 7c0434ba69da463af350290b52d4a5115b4c7c83
                                              Found module _bounded_integers.cpython-310-x86_64-linux-gnu.so with build-id: 397d824b998e32e057a868d8762fc0651c0b86e6
                                              Found module _blake2.cpython-310-x86_64-linux-gnu.so with build-id: af507b5d3e67707f3d23e35836f059f09fa53fd3
                                              Found module libcrypto.so.1.1 with build-id: 826018d0fadd8204b482f6cf2e192720a594bcff
                                              Found module _hashlib.cpython-310-x86_64-linux-gnu.so with build-id: 5c2835aeb740d6ba7e123d1ea885293e96b964f5
                                              Found module _common.cpython-310-x86_64-linux-gnu.so with build-id: 421e27a8de7f45d4bb96e9fd05b95c7011df066e
                                              Found module bit_generator.cpython-310-x86_64-linux-gnu.so with build-id: 492005356271dc33611aef0a5a7f45558b1588e7
                                              Found module mtrand.cpython-310-x86_64-linux-gnu.so with build-id: 4b45e371841141af405bb89e814bb18e935483f8
                                              Found module _pocketfft_internal.cpython-310-x86_64-linux-gnu.so with build-id: 56779ee1c2e209f33aa2e863389f88c6669e000c
                                              Found module _umath_linalg.cpython-310-x86_64-linux-gnu.so with build-id: 3739f5e16501df1b2b9646a8dc94f13e4a0b3b37
                                              Found module libffi.so.6 with build-id: 0129f72b58e11d59546f7f207d2c90af7ebd9a5e
                                              Found module _ctypes.cpython-310-x86_64-linux-gnu.so with build-id: b7355691da22d21a49d66a4ccd776bc7ef458558
                                              Found module _multiarray_tests.cpython-310-x86_64-linux-gnu.so with build-id: 304e788a8224dc472216af841f80a403fad1cf23
                                              Found module libgcc_s.so.1 with build-id: 45303fe7be3e2e9dc87cf5f3c11ac4d673d3e1be
                                              Found module libquadmath-96973f99.so.0.0.0 with build-id: 549b4c82347785459571c79239872ad31509dcf4
                                              Found module libgfortran-040039e1.so.5.0.0 with build-id: 5bbe74eb6855e0a2c043c0bec2f484bf3e9f14c0
                                              Found module libpthread.so.0 with build-id: 077eddd3ed4586c59e646f976d6f4a1b311ec452
                                              Found module libopenblas64_p-r0-742d56dc.3.20.so with build-id: 38f9349d4f62a832538a7b82eecd9d22fa1b48d6
                                              Found module _multiarray_umath.cpython-310-x86_64-linux-gnu.so with build-id: 3dddeb5d346bf40fb2a957f073e9ad67b4e9714f
                                              Found module _zoneinfo.cpython-310-x86_64-linux-gnu.so with build-id: fbb3340f38ff82857ec887bba7e0d0ddf9648ccd
                                              Found module binascii.cpython-310-x86_64-linux-gnu.so with build-id: 9f9c0ce7c6b646604e5c4545a1e30e425b905666
                                              Found module libmpdec.so.3 with build-id: 6329d0897485c72d36c043c43b61361f51888376
                                              Found module _decimal.cpython-310-x86_64-linux-gnu.so with build-id: 84d06a76e7c76b681455c33ca0ad92d52c857f6a
                                              Found module libuuid.so.1 with build-id: 52d4ea2a005c5cbce6e92f00278205803074b572
                                              Found module _uuid.cpython-310-x86_64-linux-gnu.so with build-id: d3b61fa4c748030f6b2b3266ab879f358098fccd
                                              Found module unicodedata.cpython-310-x86_64-linux-gnu.so with build-id: 6a9096142f64932b21d6712028be536f64c53afc
                                              Found module _sha512.cpython-310-x86_64-linux-gnu.so with build-id: 947cf8ea78278ca2c4dd9dc89dbda6b68fda27a7
                                              Found module _random.cpython-310-x86_64-linux-gnu.so with build-id: a32e0ea50234402bb021b23fd2760cf7765ae6bd
                                              Found module liblzma.so.5 with build-id: 8f6112440d7c7e991ffa27ef23ceb6bd6a6ed4a0
                                              Found module _lzma.cpython-310-x86_64-linux-gnu.so with build-id: 909300d8468adb0e408af45e45c06a2a7138bf0a
                                              Found module libbz2.so.1 with build-id: 19ce300b78962ee0b113afb0f1016727a2f3c37b
                                              Found module _bz2.cpython-310-x86_64-linux-gnu.so with build-id: 302374fa4cf5623b527238e9dbbbbf6711cb2150
                                              Found module libz.so.1 with build-id: 768c9db7445d8e91230de0a6126458400a264360
                                              Found module zlib.cpython-310-x86_64-linux-gnu.so with build-id: e40042683a4a3acb8fba0dc15352fb43fc4d1bf7
                                              Found module _queue.cpython-310-x86_64-linux-gnu.so with build-id: a4c4554967abf493145602c343cc999312e3349a
                                              Found module _heapq.cpython-310-x86_64-linux-gnu.so with build-id: a87dd48871eec57de69e9406aece2d64bf9c6329
                                              Found module _opcode.cpython-310-x86_64-linux-gnu.so with build-id: 0e8d86adec64f50e515d5a655e054a48286bc04c
                                              Found module _bisect.cpython-310-x86_64-linux-gnu.so with build-id: dfd97ee74f0aac6ca9c9fd4d181030b25ff3e782
                                              Found module _json.cpython-310-x86_64-linux-gnu.so with build-id: bc346de108d7b4573ce67410bc39f45cc103e2f4
                                              Found module _datetime.cpython-310-x86_64-linux-gnu.so with build-id: 9b3ab704ca13eacf65f218c7ce88014227c37998
                                              Found module _posixshmem.cpython-310-x86_64-linux-gnu.so with build-id: 1c035ac3f4e1930430bf76eb2c90505df01195eb
                                              Found module _multiprocessing.cpython-310-x86_64-linux-gnu.so with build-id: 97f0539735ab4d9b3acf9e3b448f3890b3470ddd
                                              Found module _posixsubprocess.cpython-310-x86_64-linux-gnu.so with build-id: 40b70e7b838b58a5da105f7f83758c20df8cf9a0
                                              Found module fcntl.cpython-310-x86_64-linux-gnu.so with build-id: 887731cf3a4a4d4199d8cd55f5c5268b29a12980
                                              Found module array.cpython-310-x86_64-linux-gnu.so with build-id: 93a487ee84e954f6a6878585be3eb6667b5f3e99
                                              Found module select.cpython-310-x86_64-linux-gnu.so with build-id: 3b591d49845da074217201fb689f9c7fc61e6fb6
                                              Found module math.cpython-310-x86_64-linux-gnu.so with build-id: b50d5605ce2c3d5dfc84f74468eec1a3cf30b892
                                              Found module _socket.cpython-310-x86_64-linux-gnu.so with build-id: b2af87876e3db32f9b47f32323bd528aba942cfd
                                              Found module _pickle.cpython-310-x86_64-linux-gnu.so with build-id: f4339a54fb959eec92edb66327cbab4c3e511964
                                              Found module _struct.cpython-310-x86_64-linux-gnu.so with build-id: 29854f8ba344bdab11f109cb423c117a326fc474
                                              Found module ld-linux-x86-64.so.2 with build-id: c19d67203d1e3c75fdf814e850451d2cb9135a32
                                              Found module libm.so.6 with build-id: c670eb9941db4c477a995e955bf6ba709c963f56
                                              Found module libc.so.6 with build-id: 1a817dfb16572d718ba9d914a76b5bd35cbea55c
                                              Found module libpython3.10.so.1.0 with build-id: 704ae7ec454f6027cd941a1ce25066ee39022399
                                              Found module python3.10 with build-id: 96e8ddd82f3b8790a0a78c3a1e99a5f998bfa345
                                              Stack trace of thread 3607439:
                                              #0  0x00007f1ff9707f10 deduce_unreachable (libpython3.10.so.1.0 + 0x107f10)
                                              #1  0x00007f1ff9707bf3 gc_collect_main (libpython3.10.so.1.0 + 0x107bf3)
                                              #2  0x00007f1ff9788eee gc_collect_with_callback (libpython3.10.so.1.0 + 0x188eee)
                                              #3  0x00007f1ff97bfaee PyGC_Collect (libpython3.10.so.1.0 + 0x1bfaee)
                                              #4  0x00007f1ff97bf432 Py_FinalizeEx (libpython3.10.so.1.0 + 0x1bf432)
                                              #5  0x00007f1ff97bf5ec Py_Exit (libpython3.10.so.1.0 + 0x1bf5ec)
                                              #6  0x00007f1ff97bc86b handle_system_exit (libpython3.10.so.1.0 + 0x1bc86b)
                                              #7  0x00007f1ff97bc7ed PyErr_PrintEx (libpython3.10.so.1.0 + 0x1bc7ed)
                                              #8  0x00007f1ff97b224f PyRun_SimpleStringFlags (libpython3.10.so.1.0 + 0x1b224f)
                                              #9  0x00007f1ff97b1387 Py_RunMain (libpython3.10.so.1.0 + 0x1b1387)
                                              #10 0x00007f1ff977e07d Py_BytesMain (libpython3.10.so.1.0 + 0x17e07d)
                                              #11 0x00007f1ff923feb0 __libc_start_call_main (libc.so.6 + 0x3feb0)
                                              #12 0x00007f1ff923ff60 __libc_start_main@@GLIBC_2.34 (libc.so.6 + 0x3ff60)
                                              #13 0x00005603e7fd0095 _start (python3.10 + 0x1095)
                                              
                                              Stack trace of thread 3607489:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607491:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607492:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607497:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607502:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607508:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607506:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607488:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607517:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607519:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607496:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607526:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607490:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607493:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607498:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607521:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607507:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607487:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607533:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607530:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607527:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607522:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607525:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607512:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607505:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607513:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607504:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607532:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607503:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607524:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607515:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607514:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607518:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607520:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607529:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607494:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607511:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607509:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607499:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607500:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607495:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607531:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607501:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607523:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607510:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607528:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3607516:
                                              #0  0x00007f1ff929c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f1ff929ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f1fe8b39deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f1ff929f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f1ff923f450 __clone3 (libc.so.6 + 0x3f450)
Jan 12 19:15:29 ob systemd-coredump[3549427]: Process 3548230 (python) of user 1001 dumped core.
                                              
                                              Found module linux-vdso.so.1 with build-id: 1bf57cefdf3b2693754ee52a9d6a1e1af09a00bb
                                              Found module libsqlite3.so.0 with build-id: 072b1e135c03359061ea9c8346cdb61528950924
                                              Found module _sqlite3.cpython-310-x86_64-linux-gnu.so with build-id: 6bc1857ae90a75bd69794fee0eb5240f18b6a1e7
                                              Found module libexpat.so.1 with build-id: f732d4b5357d2e0e7e1e6b817349ca03779b057f
                                              Found module pyexpat.cpython-310-x86_64-linux-gnu.so with build-id: 69ccb044e5eeee4495eea35e6b22321702c2dc7f
                                              Found module _speedups.cpython-310-x86_64-linux-gnu.so with build-id: f8ece345c5cdce204e3b14e5139f298478218eaf
                                              Found module speedups.cpython-310-x86_64-linux-gnu.so with build-id: 959c7fe5bc9373f57553bc6fbe2a7d95b47cb081
                                              Found module tools.cpython-310-x86_64-linux-gnu.so with build-id: efbef1d8b3c4c5f70e1420341e0d313aca99e91c
                                              Found module env_settings.cpython-310-x86_64-linux-gnu.so with build-id: f2eab3f5d34f5ae52d8114c5aacfdfebbc407abd
                                              Found module decorator.cpython-310-x86_64-linux-gnu.so with build-id: d6827fd5a85fbc80f5c8d191f2d8d8d5d68abf4c
                                              Found module annotated_types.cpython-310-x86_64-linux-gnu.so with build-id: a627dd881d169dd1859f92153adfe3b7f9d262d3
                                              Found module schema.cpython-310-x86_64-linux-gnu.so with build-id: 7bba8f1d53d686f839c44c7e8a9b7596ac80563b
                                              Found module parse.cpython-310-x86_64-linux-gnu.so with build-id: 17dd4c4c23e3ed10bcd3db06b35275271beaedbf
                                              Found module main.cpython-310-x86_64-linux-gnu.so with build-id: 4f40b6e94576de0d31eec1915928f70389d055c8
                                              Found module fields.cpython-310-x86_64-linux-gnu.so with build-id: e073dc012f1577ca5a79f06a43b918ca0ddace97
                                              Found module types.cpython-310-x86_64-linux-gnu.so with build-id: 7662b9988ecae487256245c9008ab8a85e633a82
                                              Found module datetime_parse.cpython-310-x86_64-linux-gnu.so with build-id: 102175af4ea5645aa0e7f99ec00b474cb508a7d1
                                              Found module validators.cpython-310-x86_64-linux-gnu.so with build-id: de7e09ad4682fd984dde5bb11627887a992a49dc
                                              Found module networks.cpython-310-x86_64-linux-gnu.so with build-id: 38d2c37ffcbfe78c037a2561ea420f3ca7052d10
                                              Found module color.cpython-310-x86_64-linux-gnu.so with build-id: 5c1eb85e9e64a4ac99718e657db68ac948e10a10
                                              Found module json.cpython-310-x86_64-linux-gnu.so with build-id: fd9dd271f59c1c4ed4151721d9e4986bbbfa25d9
                                              Found module error_wrappers.cpython-310-x86_64-linux-gnu.so with build-id: eb1884ad6bd3443d8222d8fb9a1b043a9229c4c5
                                              Found module config.cpython-310-x86_64-linux-gnu.so with build-id: cc01d1dfb7a182276d0dcaea6f649b0fa464836a
                                              Found module version.cpython-310-x86_64-linux-gnu.so with build-id: 69f842c2e1bfd5053ee53984ee4cd7a6fb3e14fa
                                              Found module utils.cpython-310-x86_64-linux-gnu.so with build-id: d1f747c948ae1efad55f73b1fd3e97f23f49c29f
                                              Found module typing.cpython-310-x86_64-linux-gnu.so with build-id: d17664300b683b3aa355825ba78ad02f63b68b78
                                              Found module errors.cpython-310-x86_64-linux-gnu.so with build-id: 8e85a9475777f3863998968038f5793580d8b483
                                              Found module class_validators.cpython-310-x86_64-linux-gnu.so with build-id: 88d1d548ac4819cc4e3584845368b995c708c234
                                              Found module dataclasses.cpython-310-x86_64-linux-gnu.so with build-id: 11cd7f1d0924456b4b86a1d414532b0f444b2c74
                                              Found module __init__.cpython-310-x86_64-linux-gnu.so with build-id: c2b61aac11e2cd2588a0d4dbd06409987490d10e
                                              Found module _cmsgpack.cpython-310-x86_64-linux-gnu.so with build-id: b12688b5c0e8fad744da78bf64542881f643a519
                                              Found module _frozenlist.cpython-310-x86_64-linux-gnu.so with build-id: 245191022d304b3bf0a71d3477a58ca60bd614dc
                                              Found module _websocket.cpython-310-x86_64-linux-gnu.so with build-id: 0024cc2cb9de82a0c7bd7563dc11ad9094eaf4a2
                                              Found module _http_parser.cpython-310-x86_64-linux-gnu.so with build-id: d90034b0b4c49670fc51048361699803ae6b0f1b
                                              Found module _http_writer.cpython-310-x86_64-linux-gnu.so with build-id: d084ce6761c1b9b9d24472a4c61cfc7abd451b11
                                              Found module _helpers.cpython-310-x86_64-linux-gnu.so with build-id: e9e2e6a50c64df20fd3549d2c89bc8960ab7bdc6
                                              Found module _quoting_c.cpython-310-x86_64-linux-gnu.so with build-id: c23d94825e11770a0160aafef72e632a2a6ec491
                                              Found module _asyncio.cpython-310-x86_64-linux-gnu.so with build-id: 0c5f7b8210c7eef51d54857c5992bf0371c35577
                                              Found module _contextvars.cpython-310-x86_64-linux-gnu.so with build-id: 65a7d5811bb0403d480e85dd7f4a5954e280db8d
                                              Found module _multidict.cpython-310-x86_64-linux-gnu.so with build-id: 672f844889d6ff741b5d257d45cd522098e66c65
                                              Found module _multibytecodec.cpython-310-x86_64-linux-gnu.so with build-id: d7ac678d50da6a635331943334125f471e16740f
                                              Found module libssl.so.1.1 with build-id: 908866f88b06bfa3b935e976f00b30362f7df5fc
                                              Found module _ssl.cpython-310-x86_64-linux-gnu.so with build-id: 8009c6c7c64cc179e46253b19e59fd7fc1d4eaee
                                              Found module json.cpython-310-x86_64-linux-gnu.so with build-id: 6168312ef74f59d47bc6da96f3def37b7789b982
                                              Found module parsers.cpython-310-x86_64-linux-gnu.so with build-id: bac1546e195872bf577c9e5ce4f050581562dfc5
                                              Found module cmath.cpython-310-x86_64-linux-gnu.so with build-id: 52062c4f568047441eb439446be21ac937414c63
                                              Found module testing.cpython-310-x86_64-linux-gnu.so with build-id: dcce2d1ca5aa69df91858c54a3540ba84a826564
                                              Found module groupby.cpython-310-x86_64-linux-gnu.so with build-id: fd2d27678fef269d3d8e5ab88eea7da5838b515f
                                              Found module strptime.cpython-310-x86_64-linux-gnu.so with build-id: 402fe8d10c72d5975267ccf1d93f0370b8e80edc
                                              Found module reshape.cpython-310-x86_64-linux-gnu.so with build-id: 8029a1951a59ea4d890bf2a85fd9472a29b6b5df
                                              Found module indexers.cpython-310-x86_64-linux-gnu.so with build-id: 19c4fcd2c47ca7879fb92da70b436f2451b36ce4
                                              Found module libstdc++.so.6 with build-id: b4f2500414030d73619ef9ed35e0de7fa62340a5
                                              Found module aggregations.cpython-310-x86_64-linux-gnu.so with build-id: a123e3d9ce5aa0cdeffe1e0f1b5ca02009df5008
                                              Found module grp.cpython-310-x86_64-linux-gnu.so with build-id: e2c3976cff088caf8bd693ff828d8cdea880e8bf
                                              Found module mmap.cpython-310-x86_64-linux-gnu.so with build-id: 5a6d023494360b675e3e0cca6a610cf5f3b64cff
                                              Found module writers.cpython-310-x86_64-linux-gnu.so with build-id: 14c981322098b69659f3e9e6363fec70ae5c1cda
                                              Found module internals.cpython-310-x86_64-linux-gnu.so with build-id: cbe0b6f75263c568956e5a6e9cc0f231b2a57849
                                              Found module indexing.cpython-310-x86_64-linux-gnu.so with build-id: 5d59066bf39519b753c1779f9fe2aee9df614ba3
                                              Found module reduction.cpython-310-x86_64-linux-gnu.so with build-id: a8d2e9f8b4cc929c5e37cbcdad4a31dd0b1c6053
                                              Found module sparse.cpython-310-x86_64-linux-gnu.so with build-id: a0923d08f94c05ce8d5107f2a57928217d7dda3a
                                              Found module join.cpython-310-x86_64-linux-gnu.so with build-id: 5ee0f3a8fc7949771dfaeb9bb6be9f38d9ba1d33
                                              Found module index.cpython-310-x86_64-linux-gnu.so with build-id: 17c085507517466cf34edacc30561902ff9ddcc7
                                              Found module arrays.cpython-310-x86_64-linux-gnu.so with build-id: e825f5bf143b4059f333645316c10ab051d3ce14
                                              Found module _csv.cpython-310-x86_64-linux-gnu.so with build-id: a494b9d9a2cdbb31dc58c70ae8054a93282548f2
                                              Found module ops.cpython-310-x86_64-linux-gnu.so with build-id: bb9fc87c7ae33c377ebdea3471bf7b3e2f4eb461
                                              Found module hashing.cpython-310-x86_64-linux-gnu.so with build-id: 0e4b3fcad68fd684b13d815f41a90a18eadaa2da
                                              Found module tslib.cpython-310-x86_64-linux-gnu.so with build-id: 0361e9e65df17b9a6a572c4ed4b80cc789729175
                                              Found module lib.cpython-310-x86_64-linux-gnu.so with build-id: 5702a0539d3c4be1ada9cb211b0e6992fbab496f
                                              Found module algos.cpython-310-x86_64-linux-gnu.so with build-id: fa8e0b86b2da68b0aa66d43761ba21dadce186fe
                                              Found module ops_dispatch.cpython-310-x86_64-linux-gnu.so with build-id: 2759ff745e1be06aeca72e58d805c8d7d82f1c8e
                                              Found module vectorized.cpython-310-x86_64-linux-gnu.so with build-id: b9a3a36d6b659c1501bddb758e102b33040467a3
                                              Found module period.cpython-310-x86_64-linux-gnu.so with build-id: b53e997c1ad92b354fb9164b8f1ff2fbc58fa60d
                                              Found module properties.cpython-310-x86_64-linux-gnu.so with build-id: e77c3143ddb7ca47cc12e693a40b77a351b8a312
                                              Found module timestamps.cpython-310-x86_64-linux-gnu.so with build-id: b970b0802d9f132d6b20fa616601989e5918c085
                                              Found module ccalendar.cpython-310-x86_64-linux-gnu.so with build-id: 4efa252bb8933879a1cf7ff96520971667a8559c
                                              Found module fields.cpython-310-x86_64-linux-gnu.so with build-id: 5bcd1e6f640b41ffe6b5804327b01e7b45548c75
                                              Found module timedeltas.cpython-310-x86_64-linux-gnu.so with build-id: 0b55316988896185b3c3bae4b2a0ab87d1a58103
                                              Found module offsets.cpython-310-x86_64-linux-gnu.so with build-id: 5ae38064ed9ce956ad640fb14e7dc827cea0c7dc
                                              Found module parsing.cpython-310-x86_64-linux-gnu.so with build-id: 1221efbf0d09f18464a1e2de486072ff04a3c035
                                              Found module timezones.cpython-310-x86_64-linux-gnu.so with build-id: 6a54b0dca3dacbed87b550f3c286533eaee52f89
                                              Found module tzconversion.cpython-310-x86_64-linux-gnu.so with build-id: ebd76a2f20e010fb44fac86bbca3e5b0ec1aa4a0
                                              Found module nattype.cpython-310-x86_64-linux-gnu.so with build-id: 322e971e8617248de4b71f7eaf56dfa6fc5dc644
                                              Found module base.cpython-310-x86_64-linux-gnu.so with build-id: c7d45c41d58184c88c410e89f07030916fd0a619
                                              Found module conversion.cpython-310-x86_64-linux-gnu.so with build-id: 724005b9d510c85131e4db6798d08053d98f260a
                                              Found module np_datetime.cpython-310-x86_64-linux-gnu.so with build-id: a9819712d6de1f64c1ca89fda299fae7e0dc7a2b
                                              Found module dtypes.cpython-310-x86_64-linux-gnu.so with build-id: e2bef92af333d4c76187e602c1c988d694fb9b3f
                                              Found module missing.cpython-310-x86_64-linux-gnu.so with build-id: 0d841cd134c2ac6c75aafca279bbf52f42bcfa21
                                              Found module hashtable.cpython-310-x86_64-linux-gnu.so with build-id: 09c2c201a9768762b57645f6189062898faeb961
                                              Found module interval.cpython-310-x86_64-linux-gnu.so with build-id: 9206ef16943e2dedcddb08e211e619a1afb28206
                                              Found module _generator.cpython-310-x86_64-linux-gnu.so with build-id: ed225ac2ce70d3d6af03b78c26a7b39ca30f3120
                                              Found module _sfc64.cpython-310-x86_64-linux-gnu.so with build-id: 48c0ff602e265de99a7d7f9c5bb0c9e9ed7c2859
                                              Found module _pcg64.cpython-310-x86_64-linux-gnu.so with build-id: c2d529ea6709b8d32d2fdb0d27a505cb7cd55ec3
                                              Found module _philox.cpython-310-x86_64-linux-gnu.so with build-id: b412e81a80d88b2e2c97d3943d62d6c8d7c1d39a
                                              Found module _mt19937.cpython-310-x86_64-linux-gnu.so with build-id: 7c0434ba69da463af350290b52d4a5115b4c7c83
                                              Found module _bounded_integers.cpython-310-x86_64-linux-gnu.so with build-id: 397d824b998e32e057a868d8762fc0651c0b86e6
                                              Found module _blake2.cpython-310-x86_64-linux-gnu.so with build-id: af507b5d3e67707f3d23e35836f059f09fa53fd3
                                              Found module libcrypto.so.1.1 with build-id: 826018d0fadd8204b482f6cf2e192720a594bcff
                                              Found module _hashlib.cpython-310-x86_64-linux-gnu.so with build-id: 5c2835aeb740d6ba7e123d1ea885293e96b964f5
                                              Found module _common.cpython-310-x86_64-linux-gnu.so with build-id: 421e27a8de7f45d4bb96e9fd05b95c7011df066e
                                              Found module bit_generator.cpython-310-x86_64-linux-gnu.so with build-id: 492005356271dc33611aef0a5a7f45558b1588e7
                                              Found module mtrand.cpython-310-x86_64-linux-gnu.so with build-id: 4b45e371841141af405bb89e814bb18e935483f8
                                              Found module _pocketfft_internal.cpython-310-x86_64-linux-gnu.so with build-id: 56779ee1c2e209f33aa2e863389f88c6669e000c
                                              Found module _umath_linalg.cpython-310-x86_64-linux-gnu.so with build-id: 3739f5e16501df1b2b9646a8dc94f13e4a0b3b37
                                              Found module libffi.so.6 with build-id: 0129f72b58e11d59546f7f207d2c90af7ebd9a5e
                                              Found module _ctypes.cpython-310-x86_64-linux-gnu.so with build-id: b7355691da22d21a49d66a4ccd776bc7ef458558
                                              Found module _multiarray_tests.cpython-310-x86_64-linux-gnu.so with build-id: 304e788a8224dc472216af841f80a403fad1cf23
                                              Found module libgcc_s.so.1 with build-id: 45303fe7be3e2e9dc87cf5f3c11ac4d673d3e1be
                                              Found module libquadmath-96973f99.so.0.0.0 with build-id: 549b4c82347785459571c79239872ad31509dcf4
                                              Found module libgfortran-040039e1.so.5.0.0 with build-id: 5bbe74eb6855e0a2c043c0bec2f484bf3e9f14c0
                                              Found module libpthread.so.0 with build-id: 077eddd3ed4586c59e646f976d6f4a1b311ec452
                                              Found module libopenblas64_p-r0-742d56dc.3.20.so with build-id: 38f9349d4f62a832538a7b82eecd9d22fa1b48d6
                                              Found module _multiarray_umath.cpython-310-x86_64-linux-gnu.so with build-id: 3dddeb5d346bf40fb2a957f073e9ad67b4e9714f
                                              Found module _zoneinfo.cpython-310-x86_64-linux-gnu.so with build-id: fbb3340f38ff82857ec887bba7e0d0ddf9648ccd
                                              Found module binascii.cpython-310-x86_64-linux-gnu.so with build-id: 9f9c0ce7c6b646604e5c4545a1e30e425b905666
                                              Found module libmpdec.so.3 with build-id: 6329d0897485c72d36c043c43b61361f51888376
                                              Found module _decimal.cpython-310-x86_64-linux-gnu.so with build-id: 84d06a76e7c76b681455c33ca0ad92d52c857f6a
                                              Found module libuuid.so.1 with build-id: 52d4ea2a005c5cbce6e92f00278205803074b572
                                              Found module _uuid.cpython-310-x86_64-linux-gnu.so with build-id: d3b61fa4c748030f6b2b3266ab879f358098fccd
                                              Found module unicodedata.cpython-310-x86_64-linux-gnu.so with build-id: 6a9096142f64932b21d6712028be536f64c53afc
                                              Found module _sha512.cpython-310-x86_64-linux-gnu.so with build-id: 947cf8ea78278ca2c4dd9dc89dbda6b68fda27a7
                                              Found module _random.cpython-310-x86_64-linux-gnu.so with build-id: a32e0ea50234402bb021b23fd2760cf7765ae6bd
                                              Found module liblzma.so.5 with build-id: 8f6112440d7c7e991ffa27ef23ceb6bd6a6ed4a0
                                              Found module _lzma.cpython-310-x86_64-linux-gnu.so with build-id: 909300d8468adb0e408af45e45c06a2a7138bf0a
                                              Found module libbz2.so.1 with build-id: 19ce300b78962ee0b113afb0f1016727a2f3c37b
                                              Found module _bz2.cpython-310-x86_64-linux-gnu.so with build-id: 302374fa4cf5623b527238e9dbbbbf6711cb2150
                                              Found module libz.so.1 with build-id: 768c9db7445d8e91230de0a6126458400a264360
                                              Found module zlib.cpython-310-x86_64-linux-gnu.so with build-id: e40042683a4a3acb8fba0dc15352fb43fc4d1bf7
                                              Found module _queue.cpython-310-x86_64-linux-gnu.so with build-id: a4c4554967abf493145602c343cc999312e3349a
                                              Found module _heapq.cpython-310-x86_64-linux-gnu.so with build-id: a87dd48871eec57de69e9406aece2d64bf9c6329
                                              Found module _opcode.cpython-310-x86_64-linux-gnu.so with build-id: 0e8d86adec64f50e515d5a655e054a48286bc04c
                                              Found module _bisect.cpython-310-x86_64-linux-gnu.so with build-id: dfd97ee74f0aac6ca9c9fd4d181030b25ff3e782
                                              Found module _json.cpython-310-x86_64-linux-gnu.so with build-id: bc346de108d7b4573ce67410bc39f45cc103e2f4
                                              Found module _datetime.cpython-310-x86_64-linux-gnu.so with build-id: 9b3ab704ca13eacf65f218c7ce88014227c37998
                                              Found module _posixshmem.cpython-310-x86_64-linux-gnu.so with build-id: 1c035ac3f4e1930430bf76eb2c90505df01195eb
                                              Found module _multiprocessing.cpython-310-x86_64-linux-gnu.so with build-id: 97f0539735ab4d9b3acf9e3b448f3890b3470ddd
                                              Found module _posixsubprocess.cpython-310-x86_64-linux-gnu.so with build-id: 40b70e7b838b58a5da105f7f83758c20df8cf9a0
                                              Found module fcntl.cpython-310-x86_64-linux-gnu.so with build-id: 887731cf3a4a4d4199d8cd55f5c5268b29a12980
                                              Found module array.cpython-310-x86_64-linux-gnu.so with build-id: 93a487ee84e954f6a6878585be3eb6667b5f3e99
                                              Found module select.cpython-310-x86_64-linux-gnu.so with build-id: 3b591d49845da074217201fb689f9c7fc61e6fb6
                                              Found module math.cpython-310-x86_64-linux-gnu.so with build-id: b50d5605ce2c3d5dfc84f74468eec1a3cf30b892
                                              Found module _socket.cpython-310-x86_64-linux-gnu.so with build-id: b2af87876e3db32f9b47f32323bd528aba942cfd
                                              Found module _pickle.cpython-310-x86_64-linux-gnu.so with build-id: f4339a54fb959eec92edb66327cbab4c3e511964
                                              Found module _struct.cpython-310-x86_64-linux-gnu.so with build-id: 29854f8ba344bdab11f109cb423c117a326fc474
                                              Found module ld-linux-x86-64.so.2 with build-id: c19d67203d1e3c75fdf814e850451d2cb9135a32
                                              Found module libm.so.6 with build-id: c670eb9941db4c477a995e955bf6ba709c963f56
                                              Found module libc.so.6 with build-id: 1a817dfb16572d718ba9d914a76b5bd35cbea55c
                                              Found module libpython3.10.so.1.0 with build-id: 704ae7ec454f6027cd941a1ce25066ee39022399
                                              Found module python3.10 with build-id: 96e8ddd82f3b8790a0a78c3a1e99a5f998bfa345
                                              Stack trace of thread 3548230:
                                              #0  0x00007f2b06f0854d dict_traverse (libpython3.10.so.1.0 + 0x10854d)
                                              #1  0x00007f2b06f07f55 deduce_unreachable (libpython3.10.so.1.0 + 0x107f55)
                                              #2  0x00007f2b06f07bf3 gc_collect_main (libpython3.10.so.1.0 + 0x107bf3)
                                              #3  0x00007f2b06f88eee gc_collect_with_callback (libpython3.10.so.1.0 + 0x188eee)
                                              #4  0x00007f2b06fbfaee PyGC_Collect (libpython3.10.so.1.0 + 0x1bfaee)
                                              #5  0x00007f2b06fbf432 Py_FinalizeEx (libpython3.10.so.1.0 + 0x1bf432)
                                              #6  0x00007f2b06fbf5ec Py_Exit (libpython3.10.so.1.0 + 0x1bf5ec)
                                              #7  0x00007f2b06fbc86b handle_system_exit (libpython3.10.so.1.0 + 0x1bc86b)
                                              #8  0x00007f2b06fbc7ed PyErr_PrintEx (libpython3.10.so.1.0 + 0x1bc7ed)
                                              #9  0x00007f2b06fb224f PyRun_SimpleStringFlags (libpython3.10.so.1.0 + 0x1b224f)
                                              #10 0x00007f2b06fb1387 Py_RunMain (libpython3.10.so.1.0 + 0x1b1387)
                                              #11 0x00007f2b06f7e07d Py_BytesMain (libpython3.10.so.1.0 + 0x17e07d)
                                              #12 0x00007f2b06a3feb0 __libc_start_call_main (libc.so.6 + 0x3feb0)
                                              #13 0x00007f2b06a3ff60 __libc_start_main@@GLIBC_2.34 (libc.so.6 + 0x3ff60)
                                              #14 0x00005632cefd7095 _start (python3.10 + 0x1095)
                                              
                                              Stack trace of thread 3548241:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548250:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548249:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548256:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548268:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548275:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548240:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548234:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548247:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548236:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548270:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548277:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548271:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548274:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548260:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548265:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548258:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548266:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548239:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548244:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548267:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548237:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548259:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548243:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548263:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548233:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548264:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548246:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548255:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548248:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548232:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548272:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548235:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548242:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548278:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548269:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548254:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548276:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548273:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548252:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548238:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548245:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548261:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548262:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548257:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548253:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)
                                              
                                              Stack trace of thread 3548251:
                                              #0  0x00007f2b06a9c3ba __futex_abstimed_wait_common (libc.so.6 + 0x9c3ba)
                                              #1  0x00007f2b06a9ebc0 pthread_cond_wait@@GLIBC_2.3.2 (libc.so.6 + 0x9ebc0)
                                              #2  0x00007f2af6339deb blas_thread_server (libopenblas64_p-r0-742d56dc.3.20.so + 0x339deb)
                                              #3  0x00007f2b06a9f822 start_thread (libc.so.6 + 0x9f822)
                                              #4  0x00007f2b06a3f450 __clone3 (libc.so.6 + 0x3f450)

Footnotes

  1. Edited by adding <details>...</details> by @erlend-aasland

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
interpreter-core (Objects, Python, Grammar, and Parser dirs) type-crash A hard crash of the interpreter, possibly with a core dump
Projects
None yet
Development

No branches or pull requests

7 participants