You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
# TODO (joao): automatic compilation, i.e. compilation when `cache_implementation="static"` is used, leaves
229
232
# some memory allocated in the cache, which means some object is not being released properly. This causes some
230
233
# unoptimal memory usage, e.g. after certain tests a 7B model in FP16 no longer fits in a 24GB GPU.
231
234
# Investigate the root cause.
232
-
cleanup(torch_device, gc_collect=False)
235
+
cleanup(torch_device, gc_collect=True)
233
236
234
237
@slow
235
238
@require_read_token
@@ -339,7 +342,7 @@ def test_model_logits(self):
339
342
deftest_model_bf16(self):
340
343
"""Test Blt model with bfloat16 precision."""
341
344
NUM_TOKENS_TO_GENERATE=200
342
-
EXPECTED_TEXT="my name is alex and i am a student at the university of michigan. i am a senior majoring in computer science and minoring in mathematics. i am also a member of the michigan math club and the michigan computer s"
345
+
EXPECTED_TEXT="my name is alex and i am a student at the university of michigan in the college of arts and sciences. i am a senior majoring in computer science and minoring in mathematics. i am also a member of the michigan m"
343
346
344
347
prompt="my name is"
345
348
@@ -472,7 +475,7 @@ def test_model_eager(self):
472
475
deftest_model_bf16_static_cache(self):
473
476
"""Test Blt model with bfloat16 precision and static cache."""
474
477
NUM_TOKENS_TO_GENERATE=200
475
-
EXPECTED_TEXT="my name is alex and i am a student at the university of michigan. i am a senior majoring in computer science and minoring in mathematics. i am also a member of the michigan math club and the michigan computer s"
478
+
EXPECTED_TEXT="my name is alex and i am a student at the university of michigan in the college of arts and sciences. i am a senior majoring in computer science and minoring in mathematics. i am also a member of the michigan m"
0 commit comments