-
Notifications
You must be signed in to change notification settings - Fork 246
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
memory leaking #21
Comments
Can you provide me with more details? What setup leads to a memory leak? Why do you believe there's a memory leak? |
Never going down memory size. thanks. |
Can you provide me with the details? When does the memory not go down? What functions what objects? What models are you running on what type of data? Thanks, |
Thanks for your response! I was video capture , and upload to youtube for detail explaination. It is example code in your [SimpleCLM] project. (location : CLM-framework/exe/SimpleCLM/) *describe of video time line *
That's Ok I understanding, why It need much of process memory space for fast face tracking and machine learning. But I want less using memory or recycling memory. So, I was tried exploration in your source code for lower memory spend and releasing memory point. But I found one of issues. I need some of reset memory function. What should I do? Thanks. |
Thanks for such a detailed analysis. The reason for increasing of the memory is not a memory leak, but rather the algorithm precomputing certain values when it needs to and keeping them if it will ever need them again (the actual values it preallocates if you're interested are What do you mean by running clm_model x6? Are you running six instances? If so each of them will preallocate what it needs, but that information could be shared by the models. Alternatively, you can always reuse the same model instead of running multiple of them. Finally you could remove the dependence on I need some of reset memory function. What should I do? Also are you sure it uses this much memory? I haven't observed that problem before myself, are you running it without debugger attached? (CTRL+F5), Also are you running it in Release mode rather than debug. Let me know if that helps. Thanks, |
when running the simpleCLM exectable example, it seem to exsit some memory leaking.
The text was updated successfully, but these errors were encountered: