acc311dd3e15135ca35f69b0183e5b0f9f4beadf,tools/nni_gpu_tool/gpu_metrics_collector.py,,check_ready_to_run,#,27

Before Change


def check_ready_to_run():
    //TODO check process in windows
    if sys.platform == "win32":
        return True
    pgrep_output =subprocess.check_output("pgrep -fx \"python3 -m nni_gpu_tool.gpu_metrics_collector\"", shell=True)
    pidList = []
    for pid in pgrep_output.splitlines():
        pidList.append(int(pid))

After Change


def check_ready_to_run():
    if sys.platform == "win32":
        pgrep_output = subprocess.check_output("wmic process where "CommandLine like \"%nni_gpu_tool.gpu_metrics_collector%\" and name like \"%python%\"" get processId")
        pidList = pgrep_output.decode("utf-8").strip().split()
        pidList.pop(0) // remove the key word "ProcessId"
        pidList = list(map(int, pidList))
        pidList.remove(os.getpid())
        return len(pidList) == 0
    else:
        pgrep_output =subprocess.check_output("pgrep -fx \"python3 -m nni_gpu_tool.gpu_metrics_collector\"", shell=True)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: microsoft/nni
Commit Name: acc311dd3e15135ca35f69b0183e5b0f9f4beadf
Time: 2019-04-27
Author: 15094695770@163.com
File Name: tools/nni_gpu_tool/gpu_metrics_collector.py
Class Name:
Method Name: check_ready_to_run


Project Name: deepmipt/DeepPavlov
Commit Name: e258ef3ea167b86d6680bfcc513dd207586b90f4
Time: 2018-07-03
Author: yoptar@gmail.com
File Name: setup.py
Class Name:
Method Name: read_requirements


Project Name: streamlit/streamlit
Commit Name: d9061b477bbd145baefa5a1166cbc2f549602ea4
Time: 2020-05-12
Author: thiago@streamlit.io
File Name: lib/streamlit/net_util.py
Class Name:
Method Name: _make_blocking_http_get