Skip to content
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

Jep did not free GPU memory when it was closed #540

Open
SHITINGCHEN opened this issue Jun 24, 2024 · 3 comments
Open

Jep did not free GPU memory when it was closed #540

SHITINGCHEN opened this issue Jun 24, 2024 · 3 comments

Comments

@SHITINGCHEN
Copy link

Describe the bug
Using jep to run tensorflow model on a GPU machine. I suppose it will release GPU memory after jep interpreter was closed. But it was not. When running a single python script using python, the GPU memory will be released when python process finished. But now java was the process who retains the GPU usage. How can I release these GPU memory when Jep was closed but jvm is still running?

Environment (please complete the following information):

  • OS Platform, Distribution, and Version: Windows
  • Python Distribution and Version: 3.8.10
  • Java Distribution and Version: jdk 14
  • Jep Version: 4.2.0
  • Python packages used (e.g. numpy, pandas, tensorflow): tensorflow 2.7.0
@bsteffensmeier
Copy link
Member

Jep does not allocate or free any GPU memory and I do not think this is something we can do. Jep will free any unused python objects when they are no longer references but things like modules and native extensions may not be freed. You may be able to free additional memory by manually clearing sys.modules but a guick search shows that tensorflow does not free GPU until a process exits and that is not something jep can control.

@SHITINGCHEN
Copy link
Author

Jep does not allocate or free any GPU memory and I do not think this is something we can do. Jep will free any unused python objects when they are no longer references but things like modules and native extensions may not be freed. You may be able to free additional memory by manually clearing sys.modules but a guick search shows that tensorflow does not free GPU until a process exits and that is not something jep can control.

Is it possible to call a new Process (by multiprocess) in SharedInterpreter? Running tensorflow in Process in pure python did free gpu memory. But I didn't make Process work in Jep. It will throw pickle problem.

@bsteffensmeier
Copy link
Member

Multiprocessing has worked in the past but I do not think it works well with recent python versions. There may be ways to get it working but that is not something anyone has had time to investigate and document, See #228 for more detailed background background.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants