mirror of
https://github.com/ostris/ai-toolkit.git
synced 2026-01-26 16:39:47 +00:00
7 lines
161 B
Python
7 lines
161 B
Python
from toolkit.accelerator import get_accelerator
|
|
|
|
|
|
def print_acc(*args, **kwargs):
|
|
if get_accelerator().is_local_main_process:
|
|
print(*args, **kwargs)
|