Skip to content

Commit 63e2d09

Browse files
author
Charles Li
committed
Not clear caches
1 parent d174d4a commit 63e2d09

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tests/integration/aot_identical_test.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,7 @@ def assert_compile_and_real_match_hlo(self, test_name, *extra_args):
135135
)
136136
train.main(train_argv)
137137
shutil.move(local_landing_dir, train_dump_dir)
138-
jax.clear_caches()
138+
#jax.clear_caches()
139139

140140
# Generate train_compile.py HLO
141141
os.makedirs(local_landing_dir, exist_ok=True)
@@ -144,7 +144,7 @@ def assert_compile_and_real_match_hlo(self, test_name, *extra_args):
144144
compile_argv = (None, get_test_config_path()) + tuple(shared_args) + tuple(aot_args)
145145
train_compile.main(compile_argv)
146146
shutil.move(local_landing_dir, compile_dump_dir)
147-
jax.clear_caches()
147+
#jax.clear_caches()
148148

149149
# Compare
150150
compile_hlo, real_hlo = self.find_HLO_files(compile_dump_dir, train_dump_dir)

0 commit comments

Comments
 (0)