多元处理
... 多埠 multiport 多元处理 multiprocessing 多元处理机 multiprocessor ...
[计 通信] 多重处理
...。在理想状况下,双核处理器具有双倍的处理速度,但是,实际上通常会有一定的折扣。 系统及其应用程序在采用多处理器时,有两种基本的方式:第一种方式是通过多重处理(multiprocessing),在这种情况下,应用程序的整个实例以平行的方式运行在多个处理器上,就像是几个系统在协力地工作。
多处理机
... multipointrecorder多点记录仪 multiprocessing多道处理;多处理机 multiprogramming多道程序设计 ...
多进程
本文给大家简单总结了下再Python中的队列对象(queue)以及多进程(multiprocessing),非常的简单实用,有需要的小伙伴可以参考下 最近接触一个项目,要在多个虚拟机中运行任务,参考别人之前项目的代码,采用了多进...
非对称多处理 ; 非对称处理 ; 非对称式多处理 ; 非对称多重处理
对称多处理机 ; 多处理器 ; 对称性多重处理 ; 对称式多处理
多处理系统 ; 计 多重处理系统 ; 多处理器系统
词根:multiplex
Multiprocessing is the use of two or more central processing units (CPUs) within a single computer system. The term also refers to the ability of a system to support more than one processor and/or the ability to allocate tasks between them. There are many variations on this basic theme, and the definition of multiprocessing can vary with context, mostly as a function of how CPUs are defined (multiple cores on one die, multiple dies in one package, multiple packages in one system unit, etc.).According to some on-line dictionaries, a multiprocessor is a computer system having two or more processing units (multiple processors) each sharing main memory and peripherals, in order to simultaneously process programs. A 2009 textbook defined multiprocessor system similarly, but noting that the processors may share "some or all of the system’s memory and I/O facilities"; it also gave tightly coupled system as a synonymous term.At the operating system level, multiprocessing is sometimes used to refer to the execution of multiple concurrent processes in a system as opposed to a single process at any one instant. When used with this definition, multiprocessing is sometimes contrasted with multitasking, which may use just a single processor but switch it in time slices between tasks (i.e. a time-sharing system). Multiprocessing however means true parallel execution of multiple processes using more than one processor. Multiprocessing doesn't necessarily mean that a single process or task uses more than one processor simultaneously; the term parallel processing is generally used to denote that scenario. Other authors prefer to refer to the operating system techniques as multiprogramming and reserve the term multiprocessing for the hardware aspect of having more than one processor. The remainder of this article discusses multiprocessing only in this hardware sense.In Flynn's taxonomy, multiprocessors as defined above are MIMD machines. As they are normally construed to be tightly coupled (share memory), multiprocessors are not the entire class of MIMD machines, which also contains message passing multicomputer systems.