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

Set TF_FORCE_GPU_ALLOW_GROWTH=true by default #712

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions axlearn/common/launch.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@
# Note: this will disable other TF_CPP info and warnnings.
os.environ.setdefault("TF_CPP_MIN_LOG_LEVEL", "2")

if instance_type.startswith("gpu"):
# Prevent GPU OOM issues due to TF taking up all the GPU memory.
# Reference: https://stackoverflow.com/a/54927279
os.environ.setdefault("TF_FORCE_GPU_ALLOW_GROWTH", "true")

# Import jax before tensorflow else to avoid problems such as:
# tpu_library_init_fns.inc:98] TpuEmbeddingEngine_ExecutePartitioner not available in this library.
import jax # jax must be imported before tensorflow!
Expand Down