search
HomeBackend DevelopmentPHP TutorialLoad balancing difficulties in multi-core programming_PHP tutorial
Load balancing difficulties in multi-core programming_PHP tutorialJul 20, 2016 am 11:05 AM
cpuensuredistributeMultiplemulti-corebalanceperformanceofprogrammingwantloadproblem

In multi-core CPUs, if you want to fully utilize the performance of multiple CPUs, you must ensure that the tasks assigned to each CPU have a good load balance. Otherwise, some CPUs are running and other CPUs are idle, and the advantages of multi-core CPUs cannot be used.


There are usually two solutions to achieve a good load balancing, one is static load balancing and the other is dynamic load balancing.


1. Static load balancing


In static load balancing, you need to manually divide the program into multiple parts that can be executed in parallel, and you must ensure that the divided parts are It can be evenly distributed to run on each CPU, which means that the workload must be evenly distributed among multiple tasks to achieve a high acceleration factor.


Mathematically speaking, the static load balancing problem is an NP-complete problem. Richard M. Karp, Jeffrey D. Ullman, Christos H. Papadimitriou, M. Garey, D. Johnson and others have successively worked on The NP-completeness of the static load problem under several different constraints was demonstrated between 1972 and 1983.


Although the NP-completeness problem is a difficult problem in mathematics, it is not the difficult problem mentioned in the title, because NP-completeness problems can generally be solved by very effective approximation algorithms.


2. Dynamic load balancing


Dynamic load balancing is to allocate tasks during the running process of the program to achieve the purpose of load balancing. In actual situations, there are many problems that cannot be solved by static load balancing. For example, in a large loop, the number of loops is input from the outside, and the number of loops is not known in advance. In this case, it is difficult to implement the static load balancing division strategy. Load balancing.


The scheduling of tasks in dynamic load balancing is generally implemented by the system. Programmers can usually only choose the dynamic balancing scheduling strategy and cannot modify the scheduling strategy, because there are many inconsistencies in actual tasks. Due to certain factors, the scheduling algorithm cannot do a very good job, so dynamic load balancing may sometimes not meet the established load balancing requirements.


3. What is the problem with load balancing?


The problem of load balancing does not lie in the degree of load balancing, because even if there are some gaps in the task execution time allocated on each CPU, as the number of CPU cores increases, it can always be achieved The total execution time decreases, so that the acceleration factor increases with the increase in the number of CPU cores.


The difficulty of load balancing is that many parallel execution blocks in the program must be divided by programmers. Of course, when the number of CPU cores is small, such as dual-core or 4-core, this division is not Very difficult. But as the number of cores increases, the granularity of division will become increasingly finer. When the number of cores exceeds 16, programmers will probably go crazy over how to divide tasks. For example, if a piece of sequentially executed code is run on a 128-core CPU, it must be manually divided into 128 tasks. The difficulty of the division can be imagined.


The error in load division will amplify as the number of CPU cores increases. For example, a program that takes 16 time units is divided into 4 tasks for execution, and the average load execution time on each task is is 4 time units and the division error is 1 time unit, then the acceleration coefficient becomes 16/(4 1)=3.2, which is 80% of the acceleration coefficient 4 under ideal circumstances. But if it is run on a 16-core CPU, if the division error of a certain task is 0.5 time units, then the acceleration coefficient becomes 16/(1 0.5) = 10.67, which is only 66.7% of the ideal acceleration coefficient of 16 , if the number of cores increases further, the ratio of the acceleration coefficient to the ideal acceleration coefficient will decrease due to the amplification of errors.


The problem of load division is also reflected in the upgrade of CPU and software. For example, the load division on a 4-core CPU is balanced, but on an 8-core or 16-core CPU, the load may become It's unbalanced. The same goes for software upgrades. When the software adds functions, the load balance will be destroyed, and the load needs to be re-divided to achieve balance. This greatly increases the difficulty and trouble of software design.


If locks are used, some seemingly balanced loads may become unbalanced due to lock competition.


4. Load balancing strategies


For software with a small amount of calculation, it will run very fast even if it is placed on a single-core CPU, and the load balancing is done well The difference does not have much impact. In actual load balancing, software with a large amount of calculation and large scale needs to be considered. These software need to be load balanced on multiple cores to make better use of multiple cores to improve performance.


For large-scale software, the response strategy adopted in load balancing is to develop a macro-partitioning method of dividing parallel blocks, and divide it from the entire software system level, rather than targeting certain parts as in the traditional method. Programs and algorithms are used for parallel decomposition, because it is usually difficult to decompose local programs into more than dozens of tasks to run.


Another coping strategy is at the tool level, that is, compilation tools can assist manual decomposition of parallel blocks and find good decomposition solutions. Intel has made some efforts in this regard, but more efforts are needed to make the tools The function is more powerful to cope with the situation when the number of cores is large.


www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/445099.htmlTechArticleIn a multi-core CPU, if you want to fully utilize the performance of multiple CPUs, you must ensure that it is allocated to each CPU. The tasks have a good load balancing. Otherwise some CPUs are running, others are...
Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
计算机编程中常见的if语句是什么计算机编程中常见的if语句是什么Jan 29, 2023 pm 04:31 PM

计算机编程中常见的if语句是条件判断语句。if语句是一种选择分支结构,它是依据明确的条件选择选择执行路径,而不是严格按照顺序执行,在编程实际运用中要根据程序流程选择适合的分支语句,它是依照条件的结果改变执行的程序;if语句的简单语法“if(条件表达式){// 要执行的代码;}”。

多核和单核的区别是什么多核和单核的区别是什么Aug 02, 2022 pm 02:04 PM

区别:1、单核就是CPU集成了一个运算核心,多核就是CPU集成了两个或多个运算核心;2、单核能同时运行的线程数较多核更少,不利于同时运行多个程序,而多核有利于同时运行多个程序;3、单核的执行速度较多核更慢,容易造成卡顿;4、多核的多任务处理效率比单核高;5、多核的性能比单核高,散热量、耗电量也比单核大;6、单核多用于部分要求轻薄、待机时间长、而对性能要求不高的笔记本电脑上。

Python编程:详解命名元组(namedtuple)的使用要点Python编程:详解命名元组(namedtuple)的使用要点Apr 11, 2023 pm 09:22 PM

前言本文继续来介绍Python集合模块,这次主要简明扼要的介绍其内的命名元组,即namedtuple的使用。闲话少叙,我们开始——记得点赞、关注和转发哦~ ^_^创建命名元组Python集合中的命名元组类namedTuples为元组中的每个位置赋予意义,并增强代码的可读性和描述性。它们可以在任何使用常规元组的地方使用,且增加了通过名称而不是位置索引方式访问字段的能力。其来自Python内置模块collections。其使用的常规语法方式为:import collections XxNamedT

如何在Go中进行图像处理?如何在Go中进行图像处理?May 11, 2023 pm 04:45 PM

作为一门高效的编程语言,Go在图像处理领域也有着不错的表现。虽然Go本身的标准库中没有提供专门的图像处理相关的API,但是有一些优秀的第三方库可以供我们使用,比如GoCV、ImageMagick和GraphicsMagick等。本文将重点介绍使用GoCV进行图像处理的方法。GoCV是一个高度依赖于OpenCV的Go语言绑定库,其

PHP8.0中的DOMDocumentPHP8.0中的DOMDocumentMay 14, 2023 am 08:18 AM

随着PHP8.0的发布,DOMDocument作为PHP内置的XML解析库,也有了新的变化和增强。DOMDocument在PHP中的重要性不言而喻,尤其在处理XML文档方面,它的功能十分强大,而且使用起来也十分简单。本文将介绍PHP8.0中DOMDocument的新特性和应用。一、DOMDocument概述DOM(DocumentObjectModel)

学Python,还不知道main函数吗学Python,还不知道main函数吗Apr 12, 2023 pm 02:58 PM

Python 中的 main 函数充当程序的执行点,在 Python 编程中定义 main 函数是启动程序执行的必要条件,不过它仅在程序直接运行时才执行,而在作为模块导入时不会执行。要了解有关 Python main 函数的更多信息,我们将从如下几点逐步学习:什么是 Python 函数Python 中 main 函数的功能是什么一个基本的 Python main() 是怎样的Python 执行模式Let’s get started什么是 Python 函数相信很多小伙伴对函数都不陌生了,函数是可

PHP8.0中的Symbol类型PHP8.0中的Symbol类型May 14, 2023 am 08:39 AM

PHP8.0是PHP语言的最新版本,自发布以来已经引发了广泛的关注和争议。其中,最引人瞩目的新特性之一就是Symbol类型。Symbol类型是PHP8.0中新增的一种数据类型,它类似于JavaScript中的Symbol类型,可用于表示独一无二的值。这意味着,两个Symbol类型的值即使完全相同,它们也是不相等的。Symbol类型的使用可以避免在不同的代码段

为拯救童年回忆,开发者决定采用古法编程:用Flash高清重制了一款游戏为拯救童年回忆,开发者决定采用古法编程:用Flash高清重制了一款游戏Apr 11, 2023 pm 10:16 PM

两年多前,Adobe 发布了一则引人关注的公告 —— 将在 2020 年 12 月 31 日终止支持 Flash,宣告了一个时代的结束。一晃两年过去了,Adobe 早已从官方网站中删除了 Flash Player 早期版本的所有存档,并阻止基于 Flash 的内容运行。微软也已经终止对 Adobe Flash Player 的支持,并禁止其在任何 Microsoft 浏览器上运行。Adobe Flash Player 组件于 2021 年 7 月通过 Windows 更新永久删除。当 Flash

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

DVWA

DVWA

Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Atom editor mac version download

Atom editor mac version download

The most popular open source editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.