(src, target)
| 106 | |
| 107 | @tvm.register_global_func(name, override=True) |
| 108 | def compile_metal(src, target): |
| 109 | from tvm.support.xcode import compile_metal # pylint: disable=import-outside-toplevel |
| 110 | |
| 111 | return compile_metal(src, sdk="macosx") |
| 112 | |
| 113 | yield |
| 114 |
nothing calls this directly
no test coverage detected
searching dependent graphs…