(root)
| 339 | |
| 340 | @time_stage() |
| 341 | def build_mkldnn(root): |
| 342 | build_dir = mkldnn_build_dir(root) |
| 343 | with cwd(build_dir): |
| 344 | execute("make -j") |
| 345 | execute("make install") |
| 346 | logger.info("Stage [build_mkldnn] success.") |
| 347 | |
| 348 | def is_x86(): |
| 349 | import platform |
no test coverage detected