Get path to info file for the current process. As with `_get_info_dir`, the info directory will be created if it does not exist.
()
| 240 | |
| 241 | |
| 242 | def _get_info_file_path(): |
| 243 | """Get path to info file for the current process. |
| 244 | |
| 245 | As with `_get_info_dir`, the info directory will be created if it |
| 246 | does not exist. |
| 247 | """ |
| 248 | return os.path.join(_get_info_dir(), "pid-%d.info" % os.getpid()) |
| 249 | |
| 250 | |
| 251 | def write_info_file(tensorboard_info): |
no test coverage detected
searching dependent graphs…