Benjamin Lorenz

Results 157 comments of Benjamin Lorenz

This still seems to be happening with 1.10 and also during normal tests. The following backtrace looks similar to some of the other backtraces, crash during free within a sweep...

I did some debugging but I still don't know why that happens but it does offer some workarounds, i.e. setting `-DCMAKE_CXX_FLAGS_RELEASE="-O2"`. I tried several configurations to get a better backtrace...

The issue with directly converting this to an Oscar matrix is somewhat related to what you complained about in the other issue, i.e. vectors losing type information. Merging the rays...

You can use these instead: ``` julia> vertex_indices(maximal_polyhedra(PC)) 2×3 IncidenceMatrix [1, 2, 3] [1, 3] julia> ray_indices(maximal_polyhedra(PC)) 2×1 IncidenceMatrix [] [1] ```

There is this one ```julia function polyhedral_complex(f::scalar_type_or_field, v::AbstractCollection[PointVector], vi::IncidenceMatrix, r::AbstractCollection[RayVector], ri::IncidenceMatrix, L::Union{AbstractCollection[RayVector], Nothing} = nothing; non_redundant::Bool = false) ``` but it doesn't seem to work correctly with the SubobjectIterators right...

It does seem to happen during the book tests in the oscar repo as well, albeit very rarely. I just fund a GC corruption error here: https://github.com/oscar-system/Oscar.jl/actions/runs/8786611902/job/24109873680 And in this...

> But it does not always happen, does it? I mean: Usually the test seems to go through. Correct, it does not happen every time but quite often. (So much...

I did get a stuck process last night, but it doesn't seem to reproduce with the same seed, maybe there is something involved that uses a different RNG. (The CI...

It is not running out of memory, the process has about 4GB right now. I did attach a gdb to another stuck process (this one is at about 6GB memory),...

Some weird GC corruption that seems to happen when the Serialization/IPC tests happen, it seems related to julia tasks but I haven't been able to reproduce this locally. I have...