Temporarily remove async_eval

This commit is contained in:
Angelos Katharopoulos 2024-08-29 10:33:43 -07:00 committed by Awni Hannun
parent d77840207c
commit a0ce0594f6

View File

@ -249,8 +249,10 @@ def main():
draft_model=draft_model,
num_draft_tokens=args.num_draft_tokens,
)
if not args.verbose:
if not args.verbose and mx.distributed.init().rank() == 0:
print(response)
mx.synchronize()
if __name__ == "__main__":