Skip to content

Commit 80d4ce5

Browse files
authored
fix flags (#612)
1 parent e53e49b commit 80d4ce5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

engine.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
import os
44

5-
os.environ["FLAGS_USE_SYSTEM_ALLOCATOR"] = "1"
5+
os.environ["FLAGS_use_system_allocator"] = "1"
66
os.environ["NVIDIA_TF32_OVERRIDE"] = "0"
77

88
import argparse

engineV2.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040
from tester.api_config.log_writer import *
4141

42-
os.environ["FLAGS_USE_SYSTEM_ALLOCATOR"] = "1"
42+
os.environ["FLAGS_use_system_allocator"] = "1"
4343
os.environ["NVIDIA_TF32_OVERRIDE"] = "0"
4444

4545
VALID_TEST_ARGS = {

0 commit comments

Comments
 (0)