(s="",**kwargs)
| 115 | return file_path |
| 116 | |
| 117 | def print0(s="",**kwargs): |
| 118 | ddp_rank = int(os.environ.get('RANK', 0)) |
| 119 | if ddp_rank == 0: |
| 120 | print(s, **kwargs) |
| 121 | |
| 122 | def print_banner(): |
| 123 | # Cool DOS Rebel font ASCII banner made with https://manytools.org/hacker-tools/ascii-banner/ |
no outgoing calls
no test coverage detected