(self, code_path)
| 509 | print(f"{WARNING} {msg}") |
| 510 | |
| 511 | def deepspeed_src_path(self, code_path): |
| 512 | if os.path.isabs(code_path): |
| 513 | return code_path |
| 514 | else: |
| 515 | return os.path.join(Path(__file__).parent.parent.absolute(), code_path) |
| 516 | |
| 517 | def builder(self): |
| 518 | from torch.utils.cpp_extension import CppExtension |
no outgoing calls
no test coverage detected