Have you tried it? It works by making everything a packed, concrete struct rather than a collection of different structs. Recusion and branching wouldn’t be a problem for that, but maybe it’s too painful (and non-extensible) to convert your code to it
no, but I also have tried a lot of things including the non-working Virtual.jl and manual splitting and there’s no sign of any changes.
I would like to try things manually to make sure there’s ANY difference before re-writing 3k lines of code
this makes allocation worse probably because the calls are recursive and nospecialize makes more boxing
function distanceToIn(shape, point, dir)
@nospecialize shape
if shape isa Trap
distanceToIn_trap(shape, point, dir)
elseif shape isa Trd
...
..
.
nospecialize
julia> mainbench()
0.028915 seconds (616.33 k allocations: 32.053 MiB)
9.259798 seconds (222.40 M allocations: 11.224 GiB, 15.68% gc time)
original
julia> mainbench()
0.012904 seconds (9 allocations: 80.453 KiB)
2.708566 seconds (29.79 M allocations: 757.602 MiB, 3.69% gc time)
Just a side note: It is possible to try different approaches to this kind of problems by using wrappers over types while keeping the core code intact (generic). I had experimented with that in here: RayTracingInOneJulia.jl/main.jl at material_approaches · cdsousa/RayTracingInOneJulia.jl · GitHub
right, I’m having a hard time fighting the union splitting limit, we might just use a single type and encode the “type” in some Enum
Isn’t that basically what Unityper does?
Yes.
well ok so I shouldn’t expect Unityper helps.
Btw, I also increased the compiler constant regarding union splitting and other stuff from 4 → 10, didn’t help
Don’t you need a fallback here to guarantee that the same type of value is returned always?
it’s T
… basically eltype(p)
adding
function distanceToIn(shape, point::Point3{T}, dir)::T where T
function distanceToOut(shape, point::Point3{T}, dir)::T where T
changes nothing
Sorry, probably irrelevant, but as is this function may return nothing
if the input shape does not match any case. Maybe it is better to guarantee that it returns zero(eltype(p))
with an else
fallback.
To be extra clear, since this point seems to have been missed multiple times now: Unityper is not related to Union Splitting. There are no unions with unityper, there’s only ever one type (hence the name). What Gabriel and I were saying is that It’s more or less equivalent to what you were saying here:
That is, Unityper gives you a way to compactify your collections of types into one efficient struct to eliminate dynamic dispatches, and instead pattern match on which instance it is supposed to be.
Unityper doesn’t help, exact same number as before.
I have learned that the problem is around the BooleanUnion/Subtraction/Intersection
, not so much to do with the number of types in the Shape{T}
union, so I extracted the Booleans into a Unitype, and it didn’t change allocation number at all
I apologize in advance if you find my comment useless, but we have been solving exactly the same problem for our course on Julia. We had an environment with different type of agents which can interact together (like eat themselves).
Originally, we had all animals in a vector, which of course had to be Vector{AbstractAgent}
, but it was not type stable (not suprisingly). We then change the representation to a (Named)Tuple
of vectors, where each vector contained agent of particular type. This made it type stable with additional benefit that when you search for specific type of agent (to eat him), you can search through a smaller vector. It is kind of hairy, but it would work. We have time it in our implementation and speed improvement was like 4x. The implementation in our zoo is here
but it does not tell more then I have written above.
thanks for the information, no comments is useless when we have no idea what to try next!
right, but in our case, Agent have sub-fields that is different type of Agents (because Geometry can mutually nest each other, in particular, you can have a BooleanIntersection{Boolean{Left, Right}, Box{..}}}
)
so the loop over things is not a flat single pass
Then I do not know, sorry. Seems like the only solution would be to decrease variability in types, if possible.
Purely anecdotal information here, but one time I wrote a recursive function, and it was slow. I rewrote the function using a while
loop, and it was fast.
So, perhaps your real issue here is using recursion.
yeah ideally, but if you look at the code, just grep for distanceToIn
and distanceToOut
and inside(
you will know why it’s not as simple as “just don’t use recursion”
8 posts were split to a new topic: Tail-call recursion