Hardware Tutorial
Hardware Review
Embrace AI and lay off 8,000 people! Century-old giant IBM's 'Guangzhou Expansion Plan” has begun
Embrace AI and lay off 8,000 people! Century-old giant IBM's 'Guangzhou Expansion Plan” has begun
IBM suddenly announced the launch of a new round of layoffs!
In the latest 7-minute staff meeting, IBM's chief communications officer announced the news.
This time it will mainly focus on the marketing and communications departments.
Although IBM has not issued a formal statement on the scale of layoffs, as recently as January this year, they announced the layoffs of 3,400 people.
The company’s CEO Arvind Krishna has earlier stated that the company will replace 8,000 jobs with artificial intelligence in the next five years.
This entire sudden operation has directly confused the employees...
Have these 8,000 people already started to lay off employees

△Picture source: One-third of an acre
According to statistics from relevant websites, about 204 technology companies have laid off nearly 50,000 people so far this year.
Including Google’s parent company Alphabet, Amazon, and Microsoft have also launched “Guangjin Plan” one after another.

IBM officially announced layoffs
Since no more specific information was revealed about this layoff, it triggered a lot of imagination among netizens.
IBM employees in Research Triangle Park are considered to be the first victims.
There was indeed an employee who had just been laid off there-senior SEO strategist Phil Buckle was interviewed. He said he was informed of the news when he met with his boss.
He emphasized that IBM was a "dream job" and that restructuring was a common business practice.
However, he also said that Research Triangle Park’s marketing team is not large, so the impact is relatively small.
About 9,000 employees worked there as of early last year, but IBM has consistently declined to confirm local employment numbers.
It is understood that IBM employees internally call the layoff plan "resource actions."
In January this year, IBM proposed "workforce rebalancing" at the financial report meeting, and It said this would only affect a "very low proportion of staff".
(What is this new concept?)

IBM spokesman Michael Cable further explained:
is the improvement of productivity Driven by "rebalancing" and our ongoing efforts to align our workforce with the skills our customers need most.
Especially in areas such as artificial intelligence and hybrid cloud.
The company expects that by the end of 2024, the number of employees will remain the same as at the beginning of the year.
In fact, IBM's layoffs have been continuing. Back in January last year, the company disclosed that 3,900 jobs would be cut.
Not long after, IBM officially announced plans to replace 8,000 jobs with AI.
In December last year, IBM CEO Arvind Krishna publicly stated that the company was "massively improving the AI skills of all employees."
The reduction in employee size corresponds to the decline in AI Increased investment.
In May last year, IBM announced the launch of WatsonX, which is billed as a development studio for enterprises to "train, tune and deploy" machine learning models.
However, under the siege of similar products from major manufacturers such as Microsoft, Google, and Amazon, the response seems to be mediocre.
According to IBM’s January earnings call, the business size of generative AI and Watsonx products has doubled from the third quarter of 2023, when the business size was only in the hundreds of millions.
The number of layoffs in major technology companies has surged
But when it comes to layoffs, this is not something IBM will do again.
In January of this year alone, approximately 23,670 employees at technology companies were laid off. Including Google, Amazon, Discord, etc. are all laying off employees.
As of now, this number has expanded to nearly 50,000 people...
Reference link:
[ 1 ] https://www.cnbc.com/2024/03/12/ibm-tells-employees-of-job-cuts-in-marketing-and-communications.html
[ 2 ] https://www.newsobserver.com/news/business/article286731530.html
[ 3 ] https://www.cnbc.com/2024/01/26/tech-layoffs-jump-in-january-as-alphabet-meta-microsoft-reach-high.html
The above is the detailed content of Embrace AI and lay off 8,000 people! Century-old giant IBM's 'Guangzhou Expansion Plan” has begun. For more information, please follow other related articles on the PHP Chinese website!
Hot AI Tools
Undresser.AI Undress
AI-powered app for creating realistic nude photos
AI Clothes Remover
Online AI tool for removing clothes from photos.
Undress AI Tool
Undress images for free
Clothoff.io
AI clothes remover
AI Hentai Generator
Generate AI Hentai for free.
Hot Article
Hot Tools
Notepad++7.3.1
Easy-to-use and free code editor
SublimeText3 Chinese version
Chinese version, very easy to use
Zend Studio 13.0.1
Powerful PHP integrated development environment
Dreamweaver CS6
Visual web development tools
SublimeText3 Mac version
God-level code editing software (SublimeText3)
Hot Topics
1381
52
Debian mail server firewall configuration tips
Apr 13, 2025 am 11:42 AM
Configuring a Debian mail server's firewall is an important step in ensuring server security. The following are several commonly used firewall configuration methods, including the use of iptables and firewalld. Use iptables to configure firewall to install iptables (if not already installed): sudoapt-getupdatesudoapt-getinstalliptablesView current iptables rules: sudoiptables-L configuration
How debian readdir integrates with other tools
Apr 13, 2025 am 09:42 AM
The readdir function in the Debian system is a system call used to read directory contents and is often used in C programming. This article will explain how to integrate readdir with other tools to enhance its functionality. Method 1: Combining C language program and pipeline First, write a C program to call the readdir function and output the result: #include#include#include#includeintmain(intargc,char*argv[]){DIR*dir;structdirent*entry;if(argc!=2){
How to implement file sorting by debian readdir
Apr 13, 2025 am 09:06 AM
In Debian systems, the readdir function is used to read directory contents, but the order in which it returns is not predefined. To sort files in a directory, you need to read all files first, and then sort them using the qsort function. The following code demonstrates how to sort directory files using readdir and qsort in Debian system: #include#include#include#include#include//Custom comparison function, used for qsortintcompare(constvoid*a,constvoid*b){returnstrcmp(*(
How to perform digital signature verification with Debian OpenSSL
Apr 13, 2025 am 11:09 AM
Using OpenSSL for digital signature verification on Debian systems, you can follow these steps: Preparation to install OpenSSL: Make sure your Debian system has OpenSSL installed. If not installed, you can use the following command to install it: sudoaptupdatesudoaptininstallopenssl to obtain the public key: digital signature verification requires the signer's public key. Typically, the public key will be provided in the form of a file, such as public_key.pe
Debian mail server SSL certificate installation method
Apr 13, 2025 am 11:39 AM
The steps to install an SSL certificate on the Debian mail server are as follows: 1. Install the OpenSSL toolkit First, make sure that the OpenSSL toolkit is already installed on your system. If not installed, you can use the following command to install: sudoapt-getupdatesudoapt-getinstallopenssl2. Generate private key and certificate request Next, use OpenSSL to generate a 2048-bit RSA private key and a certificate request (CSR): openss
Centos shutdown command line
Apr 14, 2025 pm 09:12 PM
The CentOS shutdown command is shutdown, and the syntax is shutdown [Options] Time [Information]. Options include: -h Stop the system immediately; -P Turn off the power after shutdown; -r restart; -t Waiting time. Times can be specified as immediate (now), minutes ( minutes), or a specific time (hh:mm). Added information can be displayed in system messages.
How Debian OpenSSL prevents man-in-the-middle attacks
Apr 13, 2025 am 10:30 AM
In Debian systems, OpenSSL is an important library for encryption, decryption and certificate management. To prevent a man-in-the-middle attack (MITM), the following measures can be taken: Use HTTPS: Ensure that all network requests use the HTTPS protocol instead of HTTP. HTTPS uses TLS (Transport Layer Security Protocol) to encrypt communication data to ensure that the data is not stolen or tampered during transmission. Verify server certificate: Manually verify the server certificate on the client to ensure it is trustworthy. The server can be manually verified through the delegate method of URLSession
How to do Debian Hadoop log management
Apr 13, 2025 am 10:45 AM
Managing Hadoop logs on Debian, you can follow the following steps and best practices: Log Aggregation Enable log aggregation: Set yarn.log-aggregation-enable to true in the yarn-site.xml file to enable log aggregation. Configure log retention policy: Set yarn.log-aggregation.retain-seconds to define the retention time of the log, such as 172800 seconds (2 days). Specify log storage path: via yarn.n


