You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Julia is not fast when working with containers over abstract types. In particular, the heap and other fields in the Simulation type are currently abstractly typed or have abstract eltypes. We need a thorough cleanup here, to ensure we do not introduce unnecessary slowdowns.
The first step is to verify that Simulation and its fields are all fully concrete (recursively into the type of each field). The biggest offender is the heap.
The second step would be to verify this for the rest of the major types introduced in the library.
The text was updated successfully, but these errors were encountered:
Julia is not fast when working with containers over abstract types. In particular, the heap and other fields in the
Simulation
type are currently abstractly typed or have abstracteltype
s. We need a thorough cleanup here, to ensure we do not introduce unnecessary slowdowns.The first step is to verify that
Simulation
and its fields are all fully concrete (recursively into the type of each field). The biggest offender is the heap.The second step would be to verify this for the rest of the major types introduced in the library.
The text was updated successfully, but these errors were encountered: