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
In the current implementation of clad::tape we ensure the elements are contiguous. The grow operation relocates the elements when the size exceeds the tape capacity:
In the current implementation of
clad::tape
we ensure the elements are contiguous. Thegrow
operation relocates the elements when the size exceeds the tape capacity:clad/include/clad/Differentiator/Tape.h
Line 119 in f242077
Instead we should allocate slabs of 32 or 64 elements and the last element should point to the next slab.
The text was updated successfully, but these errors were encountered: