-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env
More file actions
22 lines (18 loc) · 1.13 KB
/
.env
File metadata and controls
22 lines (18 loc) · 1.13 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# Disable XLA JIT compilation BEFORE importing TensorFlow.
# The RTX 5080 (Compute Capability 12.0) is not yet fully supported.
# XLA's fused kernel compilation consumes excessive memory and crashes with OOM.
TF_XLA_FLAGS='--tf_xla_auto_jit=-1'
# Suppress C++ level warnings (like "GPU interconnect information not available")
# NOTE: for full debug output use '0'
#TF_CPP_MIN_LOG_LEVEL='2'
TF_CPP_MIN_LOG_LEVEL='0'
# Disable oneDNN custom operations to avoid floating-point round-off warnings
# and ensure consistent CPU results for comparison.
TF_ENABLE_ONEDNN_OPTS='0'
# TP_CPP_MIN_LOG_LEVEVL values
#| Value | Name | What you see |
#| ----: | ---------------------- | ----------------------------------------------------- |
#| 0 | **ALL** | All logs: **INFO**, **WARNING**, **ERROR**, **FATAL** |
#| 1 | **INFO** suppressed | Shows **WARNING**, **ERROR**, **FATAL** |
#| 2 | **WARNING** suppressed | Shows **ERROR**, **FATAL** |
#| 3 | **ERROR** suppressed | Shows **FATAL only** |