本文整理汇总了Python中ilastik.core.jobMachine.GLOBAL_WM.setThreadCount方法的典型用法代码示例。如果您正苦于以下问题:Python GLOBAL_WM.setThreadCount方法的具体用法?Python GLOBAL_WM.setThreadCount怎么用?Python GLOBAL_WM.setThreadCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ilastik.core.jobMachine.GLOBAL_WM
的用法示例。
在下文中一共展示了GLOBAL_WM.setThreadCount方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: main
# 需要导入模块: from ilastik.core.jobMachine import GLOBAL_WM [as 别名]
# 或者: from ilastik.core.jobMachine.GLOBAL_WM import setThreadCount [as 别名]
def main():
#
# For Windows build with Ilastik, look for site-packages
# in order to find Ilastik sources.
#
if hasattr(sys, 'frozen') and sys.platform == "win32":
root = os.path.split(sys.argv[0])[0]
if len(root) == 0:
root = os.curdir
root = os.path.abspath(root)
site_packages = os.path.join(root, 'site-packages').encode('utf-8')
if os.path.exists(site_packages) and os.path.isdir(site_packages):
import site
site.addsitedir(site_packages)
#
# For OS/X set up the UI elements that users expect from
# an app.
#
if sys.platform == "darwin":
from cellprofiler.icons import get_builtin_images_path
icon_path = os.path.join(get_builtin_images_path(), "artwork/CellProfilerIcon.png")
os.environ["APP_NAME_%d" % os.getpid()] = "CellProfilerWorker"
os.environ["APP_ICON_%d" % os.getpid()] = icon_path
# Start the JVM
from cellprofiler.utilities.cpjvm import cp_start_vm, cp_stop_vm
cp_start_vm()
deadman_start_socket = the_zmq_context.socket(zmq.PAIR)
deadman_start_socket.bind(DEADMAN_START_ADDR)
# Start the deadman switch thread.
start_daemon_thread(target=exit_on_stdin_close,
name="exit_on_stdin_close")
deadman_start_socket.recv()
deadman_start_socket.close()
# Limit Ilastik to one job thread.
try:
from ilastik.core.jobMachine import GLOBAL_WM
try:
GLOBAL_WM.set_thread_count(1)
except:
GLOBAL_WM.setThreadCount(1)
except:
pass
from cellprofiler.knime_bridge import KnimeBridgeServer
with AnalysisWorker(work_announce_address) as worker:
worker_thread = threading.Thread(target = worker.run,
name="WorkerThread")
worker_thread.setDaemon(True)
worker_thread.start()
with KnimeBridgeServer(the_zmq_context,
knime_bridge_address,
NOTIFY_ADDR, NOTIFY_STOP):
enter_run_loop()
worker_thread.join()
#
# Shutdown - need to handle some global cleanup here
#
try:
from ilastik.core.jobMachine import GLOBAL_WM
GLOBAL_WM.stopWorkers()
except:
logger.warn("Failed to stop Ilastik")
try:
cp_stop_vm()
except:
logger.warn("Failed to stop the JVM", exc_info=1)