Often times in FUSE and such we need to create intermediary arrays, e.g.
https://github.com/ProjectTorreyPines/FUSE.jl/blob/d7b49e00f733b363c33f1287a680666001727842/src/actors/build/oh_magnet.jl#L80
What if we imbedded some temporary arrays within the dd, e.g., inside core_profiles.profiles_1d[] and the like? Then we could do these calculations without allocations.
Often times in FUSE and such we need to create intermediary arrays, e.g.
https://github.com/ProjectTorreyPines/FUSE.jl/blob/d7b49e00f733b363c33f1287a680666001727842/src/actors/build/oh_magnet.jl#L80
What if we imbedded some temporary arrays within the dd, e.g., inside
core_profiles.profiles_1d[]and the like? Then we could do these calculations without allocations.