(name: str)
| 165 | |
| 166 | |
| 167 | def _get_build_dir(name: str) -> str: |
| 168 | custom_op_root_dir = os.environ.get(ev_custom_op_root_dir) |
| 169 | if custom_op_root_dir is None: |
| 170 | custom_op_root_dir = _get_default_build_root() |
| 171 | |
| 172 | build_dir = os.path.join(custom_op_root_dir, name) |
| 173 | return build_dir |
| 174 | |
| 175 | |
| 176 | ##################################################################### |
no test coverage detected