Table of Contents
The first method is to set the process priority through the command line
The second method is to use the third-party software Process Lasso
Home System Tutorial Windows Series How to adjust the large and small core scheduling in win11? Tips for optimizing performance win11

How to adjust the large and small core scheduling in win11? Tips for optimizing performance win11

Jan 10, 2024 am 08:25 AM
win11 Large and small cores

Since Intel’s 12th generation Core began to officially adopt large and small core designs, it has been criticized by many users. However, after upgrading to Win11, since Win11 has optimized the large and small core design, the performance difference is not very big. But once you run some large games or virtual machines, the problem of large and small core scheduling is amplified. So let’s see what to do next.

The most basic method is to increase the priority of the process. Find the process whose priority you want to increase on the "Details" page of the Task Manager. Taking the vmware virtual machine as an example, right-click the vmware virtualization process vmware-vmx.exe, select "Set Priority", and select "Higher than Normal" level or above, this completes the setting. At this point you should notice that the performance of the virtual machine has improved.

win11大小核调度怎么调整? 优化性能win11的技巧

However, this method cannot be set for a long time, because the setting is limited to the currently running process and will become invalid once it ends; in addition, the priority may also be changed. It is automatically adjusted back to "normal" by the system, so it is also extremely unstable. Therefore, if you want a long-term setup, you must take some special settings.

The first method is to set the process priority through the command line

Setting through the command is a straightforward method. You can write the command line into the loop body of the program or script, and then Put the program/script into the task schedule so that it can be run in a loop.

The command is as follows:

wmic process where &ldquo;name=&lsquo;<进程名>&rsquo;&rdquo; call setpriority <优先级对应整数值或对应名称>
Copy after login

The priority value and English name are as shown in the figure below.

win11大小核调度怎么调整? 优化性能win11的技巧

Example:

wmic process where &ldquo;name=&lsquo;vmware-vmx.exe&rsquo;&rdquo; call setpriority 32768
Copy after login

or

wmic process where &ldquo;name=&lsquo;vmware-vmx.exe&rsquo;&rdquo; call setpriority &ldquo;Above Normal&rdquo;
Copy after login

Setting priorities through a loop is usually very stable, but this The method requires some programming or command line experience and is not suitable for everyone.

The second method is to use the third-party software Process Lasso

This is also a focus of this article. Process Lasso is a performance optimization software that can automatically set CPU priority and other options to improve the running efficiency of the process and thereby improve performance. But intelligent scheduling is not the focus of this article. The biggest use of Process Lasso is that it can permanently set the CPU priority, as well as options such as CPU association and CPU affinity.

win11大小核调度怎么调整? 优化性能win11的技巧

# Still taking the vmware virtual machine as an example, we will introduce how to optimize the scheduling of large and small cores respectively.

1. Set priority.

Still find the vmware-vmx process, right-click and select "cpu priority". Among them, "current" means to only change the priority in the current state, which has the same effect as the previous setting in the task manager; and "always" means to make long-term settings. It is recommended to directly select the priority as "Above Standard" in "Always". At this time, Process Lasso will automatically record the path of the process and automatically increase the priority the next time it is run. (Important: Do not uncheck "Enable Windows Dynamic Thread Priority Boost", as this will have side effects and may cause other applications to freeze)

win11大小核调度怎么调整? 优化性能win11的技巧

2. CPU Sets (or CPU affinity) setting

Although the priority is set, there is still no guarantee that the priority will be automatically lowered by the system, and the phenomenon of "small cores are difficult for large cores to watch" will appear again. At this time, you can set it through CPU Sets so that the system gives priority to calling the specified core instead of calling the small core first.

Or right-click the process you want to change, select "CPU Sets" > "Always", here it is recommended to check all the big cores (all without the E mark are big cores), and the small cores then uncheck it. At this time, the big core can be called first, but the small core is not completely excluded. If the big core is full, the small core can still be called.

win11大小核调度怎么调整? 优化性能win11的技巧

3. Change the power mode to performance mode

This is also the most easily overlooked point, because the power mode also affects the scheduling of large and small cores. In actual use, it can be found that although the priority is increased and CPU Sets are configured, sometimes the big core will still sleep, or even worse, the small core will not start running. Because the system's default "balanced" power plan is to put the large core to sleep, it just causes a conflict with the "CPU Sets" setting of Process Lasso, which in turn causes the program to run slowly. In fact, the solution is very simple. You can change the power mode to "Best Performance" in System Settings > Power Options. At this time, you will find that the big core is no longer "watching" all the time.

win11大小核调度怎么调整? 优化性能win11的技巧

However, some users, especially laptop users, do not want to turn on the "best performance" mode for a long time, because if it is turned on all the time, it will increase power consumption. In fact, Process Lasso also provides a similar option to switch to performance mode on demand. Check "Trigger performance mode" in the right-click menu. After checking, the software will automatically switch to performance mode when it is running, and when the software exits, it will automatically exit performance mode. This effectively ensures that the software can fully function when running. Take advantage of the processor performance, and it will not affect battery life after exiting (especially since many users use their notebooks plugged in, which has little impact on power consumption).

win11大小核调度怎么调整? 优化性能win11的技巧

# PS: The above method is only recommended for large applications such as games with poor large and small core scheduling, but is not recommended for applications with normal scheduling.

The above is the detailed content of How to adjust the large and small core scheduling in win11? Tips for optimizing performance win11. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
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

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 Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Win11 24H2 will adjust security rules and NAS user access may fail Win11 24H2 will adjust security rules and NAS user access may fail Jun 25, 2024 pm 05:23 PM

Digital enthusiasts all know that Microsoft has released a preview version of Windows 1124H2, and the official version of Windows 1124H2 will be coming soon. This is a very important version update, and many friends are paying close attention to it. Of course, the most noteworthy thing about Windows 1124H2 is the new features and improvements in AI. It is said that Microsoft will deeply integrate Copliot. However, AI is not the subject of this article. The subject of this article is to introduce readers to two new security rule changes in the Windows 1124H2 version, which may affect some NAS users. Specifically, in the Windows 1124H2 version, Microsoft will make changes to two important network access rules:

What should I do if the win11 dual-screen calendar does not exist on the second monitor? What should I do if the win11 dual-screen calendar does not exist on the second monitor? Jun 12, 2024 pm 05:47 PM

An important tool for organizing your daily work and routine in Windows 11 is the display of time and date in the taskbar. This feature is usually located in the lower right corner of the screen and gives you instant access to the time and date. By clicking this area, you can bring up your calendar, making it easier to check upcoming appointments and dates without having to open a separate app. However, if you use multiple monitors, you may run into issues with this feature. Specifically, while the clock and date appear on the taskbar on all connected monitors, the ability to click the date and time on a second monitor to display the calendar is unavailable. As of now, this feature only works on the main display - it's unlike Windows 10, where clicking on any

Is Win11 LTSC not suitable for individual users at all? Analysis of the advantages and disadvantages of the LTSC version Is Win11 LTSC not suitable for individual users at all? Analysis of the advantages and disadvantages of the LTSC version Jun 25, 2024 pm 10:35 PM

Microsoft provides multiple versions of Windows systems, each targeting different usage scenarios. In addition to the Home, Professional, Education and Enterprise editions, there is also a special LTSC edition designed for the specific needs of large businesses and organizations. Although Windows 11 LTSC has become quite popular recently, it lacks commonly used functions and is not suitable for individual users. And this version has not yet been officially launched, and is expected to be released around September in the second half of 2024. Interesting thing: From Windows 1.0 to 11, the evolution of Windows versions. What is Windows 11 LTSC? Windows11LTSC is a feature of Windows11 operating system

System Restore prompts that you must enable system protection on this drive System Restore prompts that you must enable system protection on this drive Jun 19, 2024 pm 12:23 PM

The computer has a restore point, and when the system is restored, it prompts "You must enable system protection on this drive." This usually means that the system protection function is not turned on. System protection is a feature provided by the Windows operating system that can create system restore points to back up system files and settings. That way, if something goes wrong, you can revert to a previous state. When the system fails and you cannot enter the desktop to start it, you can only try the following method: Troubleshooting-Advanced Options-Command Prompt Command 1 netstartvssrstrui.exe/offline:C:\windows=active Command 2 cd%windir%\system32 \configrenSYSTEMsy

Is win11 24h2 worth installing? Comparison of the differences between Win11 24H2 and 23H2 Is win11 24h2 worth installing? Comparison of the differences between Win11 24H2 and 23H2 Jun 11, 2024 pm 03:17 PM

The win1124h2 version is a version that many users are looking forward to. Now that the small update of Win1124H2 has been completed, it will welcome a larger Moment update. However, many users are asking whether win1124h2 is easy to use? What is the difference between Win1124H2 and 23H2? Let this site carefully introduce to users the differences between Win1124H2 and 23H2. What is the difference between Win1124H2 and 23H2? The Windows 1124H2 update brings many adjustments and new features to the Settings application, and accelerates the migration of Control Panel-related functions/features. Improved accessibility Windows 1124H2 includes several accessibility improvements: including color filters

What should I do if my win11 wallpaper is locked and cannot be changed? What to do if my computer wallpaper is locked and cannot be changed? What should I do if my win11 wallpaper is locked and cannot be changed? What to do if my computer wallpaper is locked and cannot be changed? Jun 09, 2024 pm 08:58 PM

What should I do if my win11 wallpaper is locked and cannot be changed? Users can directly click on this computer, then click on the search box and directly enter %ProgramData%MicrosoftWindows to perform the operation. Now, let this website give users a detailed introduction to the detailed explanation of Win11 wallpaper being locked and unable to be changed. The win11 wallpaper is locked and cannot be changed. Detailed explanation method one: 1. Double-click the mouse to enter [This PC]. 2. After entering, enter a string of codes like [%ProgramData%MicrosoftWindows] in the search box at the top of the page, and then click Enter. 3. Then find [systemdata] in the folder below and click in

Quick solution to the unresponsiveness of clicking desktop icons in Windows 11 Quick solution to the unresponsiveness of clicking desktop icons in Windows 11 Jun 05, 2024 pm 01:03 PM

Nowadays, more and more people are using the win11 system. This system will inevitably have some problems. Recently, many users have encountered the problem of no response when clicking desktop icons in win11. Let’s take a look at the specific solutions! Method 1 1. On the Windows 10 desktop, we right-click the Start button in the lower left corner, and then select the "Run" menu item in the pop-up menu. 2. The Windows 10 run window will open, enter the command regedit in the window, and then click the OK button. 3. The Registry Editor window will open. In the window, we locate Computer\HKEY_CURRENT_USER\Software\Microsoft\Windows\

Several most effective solutions to the most effective solutions for win11 systems that often jump back to the desktop for no reason Several most effective solutions to the most effective solutions for win11 systems that often jump back to the desktop for no reason Jun 05, 2024 pm 04:45 PM

Some background programs may pop you out of the current app while trying to gain focus. This is usually caused by some applications that need to be updated regularly or prompt information. There are some other reasons. So how to solve it? Let’s take a look below! 1. Check background programs and use the Ctrl+Shift+Esc shortcut keys to immediately open the Task Manager. Carefully review the list of currently running applications and background processes, focusing on programs that are not system processes and are unfamiliar to you. If you find any suspicious or unwanted program, right-click on it and select "End Task" to close the program. 2. Perform a system update check and install all available updates, including driver and system security updates. By clicking the Start button and then selecting the Settings icon (

See all articles