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
{{ message }}
This repository has been archived by the owner on Dec 1, 2021. It is now read-only.
Some operations require temporary buffer to compute.
In current implementation, temporary buffer are managed by global std::unique_ptr<T[]> to avoid memory allocation in inference time.
It prevent concurrent inference and increase memory consumption.
We should consider to manage these buffer in Network.
In dlk runtime, buffer size are known in compile time, we can optimize memory usage and memory transfer.
The text was updated successfully, but these errors were encountered: