并发任务的进化之旅

An evolutionary journey of multitasking

多重任务的进化之旅

In the beginning, computers had one CPU that executed a set of instructions written by a programmer one by one. No operating system (OS), no scheduling, no threads, no multitasking. This was how computers worked for a long time. We’re talking back when a program was assembled in a deck of punched cards, and you got in big trouble if you were so unfortunate that you dropped the deck onto the floor.

一开始,计算机只有一个CPU,一个接一个地执行程序员编写的一组指令。没有操作系统(OS),没有调度,没有线程,没有多任务。在很长一段时间里,计算机就是这样工作的。我们说的是当一个程序被组装在一副打孔卡片上时,如果你不幸把卡片掉到地板上,你就有大麻烦了。

There were operating systems being researched very early and when personal computing started to grow in the 80s, operating systems such as DOS were the standard on most consumer PCs.

人们很早就开始研究操作系统,当个人电脑在80年代开始发展时,DOS等操作系统是大多数个人电脑的标准配置。

These operating systems usually yielded control of the entire CPU to the program currently executing, and it was up to the programmer to make things work and implement any kind of multitasking for their program. This worked fine, but as interactive UIs using a mouse and windowed operating systems became the norm, this model simply couldn’t work anymore.

这些操作系统通常将整个CPU的控制权交给当前正在执行的程序,由程序员来完成工作并为程序实现任何类型的多任务处理。这种模式运行良好,但随着使用鼠标和窗口操作系统的交互式ui成为常态,这种模式就不再适用了。

Non-preemptive multitasking

非抢占式多任务

Non-preemptive multitasking was the first method used to be able to keep a UI interactive (and running background processes).

非抢占式多任务是第一种能够保持UI交互(并运行后台进程)的方法。

This kind of multitasking put the responsibility of letting the OS run other tasks, such as responding to input from the mouse or running a background task, in the hands of the programmer.

这种多任务处理将让操作系统运行其他任务的责任,例如响应来自鼠标的输入或运行后台任务,交给了程序员。

Typically, the programmer yielded control to the OS.

通常,程序员将控制权交给操作系统。

Besides offloading a huge responsibility to every programmer writing a program for your platform, this method was naturally error-prone. A small mistake in a program’s code could halt or crash the entire system.

除了将巨大的责任推卸给为您的平台编写程序的每个程序员之外,这种方法自然容易出错。程序代码中的一个小错误可能会使整个系统停止或崩溃。

Another popular term for what we call non-preemptive multitasking is cooperative multitasking. Windows 3.1 used cooperative multitasking and required programmers to yield control to the OS by using specific system calls. One badly-behaving application could thereby halt the entire system.

我们称之为非抢占式多任务的另一个流行术语是合作多任务。Windows 3.1使用协同多任务,并要求程序员通过使用特定的系统调用将控制权交给操作系统。一个行为不佳的应用程序就可能使整个系统瘫痪。

Preemptive multitasking

抢占式多任务

While non-preemptive multitasking sounded like a good idea, it turned out to create serious problems as well. Letting every program and programmer out there be responsible for having a responsive UI in an operating system can ultimately lead to a bad user experience, since every bug out there could halt the entire system.

虽然非抢占式多任务处理听起来是个好主意,但事实证明它也会产生严重的问题。让每个程序和程序员都负责操作系统中的响应性UI,最终会导致糟糕的用户体验,因为每个漏洞都可能导致整个系统瘫痪。

The solution was to place the responsibility of scheduling the CPU resources between the programs that requested it (including the OS itself) in the hands of the OS. The OS can stop the execution of a process, do something else, and switch back.

解决方案是将在请求它的程序(包括操作系统本身)之间调度CPU资源的责任置于操作系统的手中。操作系统可以停止一个进程的执行,做其他事情,然后切换回来。

On such a system, if you write and run a program with a graphical user interface on a single-core machine, the OS will stop your program to update the mouse position before it switches back to your program to continue. This happens so frequently that we don’t usually observe any difference whether the CPU has a lot of work or is idle.

在这样的系统上,如果您在单核机器上编写并运行带有图形用户界面的程序,操作系统将停止您的程序以更新鼠标位置,然后再切换回您的程序继续。这种情况发生得如此频繁,以至于我们通常不会观察到CPU是否有大量工作或空闲有任何区别。

The OS is responsible for scheduling tasks and does this by switching contexts on the CPU. This process can happen many times each second, not only to keep the UI responsive but also to give some time to other background tasks and IO events.

操作系统负责调度任务,并通过在CPU上切换上下文来完成。这个过程每秒可以发生很多次,不仅是为了保持UI响应,也是为了给其他后台任务和IO事件一些时间。

This is now the prevailing way to design an operating system.

这是现在设计操作系统的主流方式。

Later in this book, we’ll write our own green threads and cover a lot of basic knowledge about context switching, threads, stacks, and scheduling that will give you more insight into this topic, so stay tuned.

在本书的后面,我们将编写自己的绿色线程,并介绍有关上下文切换、线程、堆栈和调度的许多基本知识,这些知识将使您对这个主题有更深入的了解,请继续关注。

Hyper-threading

超线程

As CPUs evolved and added more functionality such as several arithmetic logic units (ALUs) and additional logic units, the CPU manufacturers realized that the entire CPU wasn’t fully utilized. For example, when an operation only required some parts of the CPU, an instruction could be run on the ALU simultaneously. This became the start of hyper-threading.

随着CPU的发展和增加更多的功能,如几个算术逻辑单元(alu)和额外的逻辑单元,CPU制造商意识到整个CPU没有得到充分利用。例如,当一个操作只需要CPU的某些部分时,一条指令可以同时在ALU上运行。这就是超线程的开始。

Your computer today, for example, may have 6 cores and 12 logical cores… This is exactly where hyperthreading comes in. It “simulates” two cores on the same core by using unused parts of the CPU to drive progress on thread 2 and simultaneously running the code on thread 1. It does this by using a number of smart tricks (such as the one with the ALU).

例如,你今天的电脑可能有6个核心和12个逻辑核心。这正是超线程的用武之地。它通过使用CPU的未使用部分来驱动线程2上的进程并同时在线程1上运行代码,从而在同一个内核上“模拟”两个内核。它通过使用许多聪明的技巧(比如使用ALU的技巧)来实现这一点。

Now, using hyper-threading, we could actually offload some work on one thread while keeping the UI interactive by responding to events in the second thread even though we only had one CPU core, thereby utilizing our hardware better.

现在,使用超线程,我们实际上可以在一个线程上卸载一些工作,同时通过响应第二个线程中的事件保持UI交互,即使我们只有一个CPU核心,从而更好地利用我们的硬件。

It turns out that hyper-threading has been continuously improved since the 90s. Since you’re not actually running two CPUs, there will be some operations that need to wait for each other to finish. The performance gain of hyper-threading compared to multitasking in a single core seems to be somewhere close to 30% but it largely depends on the workload.

事实证明,自上世纪90年代以来,超线程一直在不断改进。由于实际上并没有运行两个cpu,因此会有一些操作需要等待对方完成。与单核的多任务处理相比,超线程的性能增益似乎接近30%,但这主要取决于工作负载。

Multicore processors

多核处理器

As most know, the clock frequency of processors has been flat for a long time. Processors get faster by improving caches, branch prediction, and speculative execution, and by working on the processing pipelines of the processors, but the gains seem to be diminishing.

众所周知,处理器的时钟频率在很长一段时间内一直是平坦的。处理器通过改进缓存、分支预测和推测执行,以及处理处理器的处理管道来提高速度,但收益似乎正在减少。

On the other hand, new processors are so small that they allow us to have many on the same chip. Now, most CPUs have many cores and most often, each core will also have the ability to perform hyper-threading.

另一方面,新的处理器是如此之小,以至于我们可以在同一个芯片上安装许多处理器。现在,大多数cpu都有许多核心,而且大多数情况下,每个核心都有执行超线程的能力。

Do you really write synchronous code?

你真的在写同步代码吗?

Like many things, this depends on your perspective. From the perspective of your process and the code you write, everything will normally happen in the order you write it.

像许多事情一样,这取决于你的观点。从您的流程和您编写的代码的角度来看,一切通常都将按照您编写的顺序发生。

From the operating system’s perspective, it might or might not interrupt your code, pause it, and run some other code in the meantime before resuming your process.

从操作系统的角度来看,它可能会也可能不会中断您的代码,暂停它,并在恢复您的进程之前同时运行一些其他代码。

From the perspective of the CPU, it will mostly execute instructions one at a time.* It doesn’t care who wrote the code, though, so when a hardware interrupt happens, it will immediately stop and give control to an interrupt handler. This is how the CPU handles concurrency.

从CPU的角度来看,它主要是一次执行一条指令。*它不关心谁写的代码,虽然,所以当硬件中断发生时,它会立即停止并把控制权交给中断处理程序。这就是CPU处理并发的方式。

However, modern CPUs can also do a lot of things in parallel. Most CPUs are pipelined, meaning that the next instruction is loaded while the current one is executing. It might have a branch predictor that tries to figure out what instructions to load next.

然而,现代cpu也可以并行处理很多事情。大多数cpu都是流水线的,这意味着当当前指令执行时,下一条指令会被加载。它可能有一个分支预测器,试图找出下一步加载什么指令。

The processor can also reorder instructions by using out-of-order execution if it believes it makes things faster this way without ‘asking’ or ‘telling’ the programmer or the OS, so you might not have any guarantee that A happens before B.

处理器也可以通过使用乱序执行来重新排序指令,如果它认为这样做可以让事情更快,而不需要“询问”或“告诉”程序员或操作系统,所以你可能无法保证A在B之前发生。

The CPU offloads some work to separate ‘coprocessors’ such as the FPU for floating-point calculations, leaving the main CPU ready to do other tasks et cetera.

CPU将一些工作卸载给独立的“协处理器”,比如FPU进行浮点计算,让主CPU准备好做其他任务等等。

As a high-level overview, it’s OK to model the CPU as operating in a synchronous manner, but for now, let’s just make a mental note that this is a model with some caveats that become especially important when talking about parallelism, synchronization primitives (such as mutexes and atomics), and the security of computers and operating systems.

作为一个高级概述,将CPU建模为以同步方式操作是可以的,但是现在,让我们记住,这个模型带有一些注意事项,在讨论并行性、同步原语(如互斥体和原子)以及计算机和操作系统的安全性时,这些注意事项变得特别重要。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/bicheng/20648.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

js实现基础购物车的制作

功能需求: 1.点击添加商品按钮会出现三个输入框(名称,价格,数量那三格,以及确认和取消按钮)。 2.点击确认后所输入的值会自动形成一行添加到表格中 3.点击编辑按钮时&#xff0…

css动态导航栏鼠标悬停特效

charset "utf-8"; /*科e互联特效基本框架CSS*/ body, ul, dl, dd, dt, ol, li, p, h1, h2, h3, h4, h5, h6, textarea, form, select, fieldset, table, td, div, input {margin:0;padding:0;-webkit-text-size-adjust: none} h1, h2, h3, h4, h5, h6{font-size:12px…

8、资源操作 Resource

目录 8.1、Spring Resources概述补充:什么是 low-level 资源?1. 文件系统资源2. 类路径资源3. URL资源4. 内嵌资源5. InputStream资源6. ServletContext资源示例代码结论 8.2、Resource接口8.3、Resource的实现类8.3.1、UrlResource访问网络资源1&#x…

LIO-EKF: 运行数据UrbanNav与mid360设备详细教程

一、代码连接 代码下载连接: YibinWu/LIO-EKF: Maybe the simplest LiDAR-inertial odometry that one can have. (github.com) 编译步骤: cd srcgit clone gitgithub.com:YibinWu/LIO-EKF.gitcatkin_makesource devel/setup.bash 运行步骤: …

为什么要保持方差为1

1.数值稳定性: 在机器学习和深度学习中,维持激活函数输入的方差在一个合理范围内(如1)是很重要的,这有助于防止在训练过程中发生梯度消失或梯度爆炸的问题。如果方差过大或过小,经过多层网络后输出结果的方…

java并发处理机制

在Java中,并发处理机制主要是通过线程来实现的。Java提供了丰富的类和接口来支持多线程编程,主要集中在 java.util.concurrent 包中。以下是一些关键的并发处理机制: 1.线程创建:可以通过继承 Thread 类或实现 Runnable 接口来创建…

公园【百度之星】/图论+dijkstra

公园 图论dijkstra #include<bits/stdc.h> using namespace std; typedef long long ll; typedef pair<ll,ll> pii; vector<ll> v[40005]; //a、b、c分别是小度、度度熊、终点到各个点的最短距离 ll a[40005],b[40005],c[40005],dist[40005],st[40005]; void…

原码、反码和真值都不存在!

文章目录 补码的理解十进制计算二进制计算 补码和真值换算数制转换负数补码转真值负数真值转补码 注&#xff1a;均来自 做而论道 答主的理解。 补码的理解 在计算机系统中&#xff0c;根本就没有原码和反码&#xff0c;真值也是不存在的。在计算机系统中&#xff0c;并不使用…

java 远程调试

1.远程启动时 jdk1.8-32\jre\bin\java.exe -Dfile.encodingUTF-8 -Djava.library.pathlib -agentlib:jdwptransportdt_socket,servery,suspendn,address5005 -jar local-com.yuetai.service-0.0.1-SNAPSHOT.jar --spring.config.locationapplication.yml 2.本地调试项目连接远…

2024-06-01 Win 11 升级 TPM 2 问题

点击 Windows 更新&#xff0c;遇到报错&#xff0c;说是不支持 CPU 和 TPM 等&#xff0c;先是朋友给了一个链接文章&#xff0c;说是可以绕过&#xff0c;尝试后&#xff0c;只是少了 CPU 的报错&#xff0c;但 TPM 2 过不了。 后来在网上找到这篇文章&#xff0c; 先试了几…

JCR一区级 | Matlab实现TCN-BiGRU-MATT时间卷积双向门控循环单元多特征分类预测

JCR一区级 | Matlab实现TCN-BiGRU-MATT时间卷积双向门控循环单元多特征分类预测 目录 JCR一区级 | Matlab实现TCN-BiGRU-MATT时间卷积双向门控循环单元多特征分类预测分类效果基本介绍程序设计参考资料 分类效果 基本介绍 1.Matlab实现TCN-BiGRU-MATT时间卷积双向门控循环单元多…

一维时间序列信号的小波模极大值分解与重建(matlab R2018A)

数学上称无限次可导函数是光滑的或没有奇异性&#xff0c;若函数在某处有间断或某阶导数不连续&#xff0c;则称函数在此处有奇异性&#xff0c;该点就是奇异点。奇异性反映了信号的不规则程度&#xff0c;因为信号的奇异点和突变部分往往携带者重要信息&#xff0c;因此信号的…

JDK1.8新特性1

JDK1.8新特性1 JDK1.8新特性&#xff1a;Lambda表达式&#xff1a;使用&#xff1a;无参数无返回值&#xff1a;单参数无返回值&#xff1a;多参数无返回值&#xff1a;多参数有返回值&#xff1a; 案例&#xff1a;案例1&#xff1a;案例2&#xff1a;案例3&#xff1a; 函数式…

代码随想录训练营Day 42|力扣62.不同路径、63. 不同路径 II

1.不同路径 代码随想录 视频讲解&#xff1a;动态规划中如何初始化很重要&#xff01;| LeetCode&#xff1a;62.不同路径_哔哩哔哩_bilibili 代码&#xff1a; class Solution { public:int uniquePaths(int m, int n) {// dp[i][j] 表示从起点走到坐标为i&#xff0c;j的地方…

全自动打包封箱机:解析其在产品质量与安全保障方面的作用

在当今快节奏的生产环境中&#xff0c;全自动打包封箱机以其高效、精准的特点&#xff0c;正逐渐成为生产线上的得力助手。它不仅提升了生产效率&#xff0c;更在产品质量与安全保障方面发挥着举足轻重的作用。星派将详细解析全自动打包封箱机在产品质量与安全保障方面的作用。…

css简单介绍

1.css介绍 css指的是层叠样式(Cascadingstyle sheets)&#xff0c;是用来给HTML标签添加样式的语言。他可以设置HTML页面中 文字大小&#xff0c;颜色&#xff0c;对齐方式及元素的 宽高&#xff0c; 位置 等样式。 一个完整的网页是由HTML、CSS、Javascript三部分组成。HT…

CLIP--Learning Transferable Visual Models From Natural Language Supervision

参考&#xff1a;CLIP论文笔记--《Learning Transferable Visual Models From Natural Language Supervision》_visual n-grams模型-CSDN博客 openAI&#xff0c;2021&#xff0c;将图片和文字联系在一起&#xff0c;----->得到一个能非常好表达图片和文字的模型主题&#…

网络安全-钓鱼篇-利用cs进行钓鱼

一、环境 自行搭建&#xff0c;kill&#xff0c;Windows10&#xff0c;cs 二、原理 如图所示 三、钓鱼演示 首先第一步&#xff1a;打开System Profiler-分析器功能 选择克隆www.baidu.com页面做钓鱼 之后我们通过包装域名&#xff0c;各种手段让攻击对象访问&#xff1a;h…

Java面试题:Redis1_Redis的使用场景和如何解决Redis缓存穿透问题

Redis使用场景常见问题 缓存 缓存三兄弟(穿透,击穿,雪崩) 双写一致 持久化 数据过期策略 数据淘汰策略 分布式锁 setnx,redisson 消息队列,延迟队列 … 解决Redis缓存穿透问题 缓存穿透问题 请求->redis缓存->mysql数据库 当一个新请求到来时,先会访问redi…

JVM(Java虚拟机)笔记

面试常见&#xff1a; 请你谈谈你对JVM的理解?java8虚拟机和之前的变化更新?什么是OOM&#xff0c;什么是栈溢出StackOverFlowError? 怎么分析?JVM的常用调优参数有哪些?内存快照如何抓取&#xff1f;怎么分析Dump文件&#xff1f;谈谈JVM中&#xff0c;类加载器你的认识…