(filename)
| 738 | |
| 739 | def create_compile_commands(self): |
| 740 | def load(filename): |
| 741 | with open(filename) as f: |
| 742 | return json.load(f) |
| 743 | |
| 744 | ninja_files = glob.glob("build/*compile_commands.json") |
| 745 | cmake_files = glob.glob("torch/lib/build/*/compile_commands.json") |
no outgoing calls
no test coverage detected