0% found this document useful (0 votes)
2K views

Calypto's Latency Guide: Bcdedit /set Disabledynamictick Yes (Windows 8+)

The document provides tips for reducing input lag and smoothing gameplay on Windows PCs. It recommends closing unnecessary background programs, disabling hyper-threading in the BIOS, avoiding Ryzen CPUs due to higher latency, using BCDEdit commands to optimize system timers, disabling processor idle states for maximum responsiveness, and installing a service to increase timer resolution for lower latency. Measuring input latency and mouse polling before and after making changes can confirm if the tweaks are effective.

Uploaded by

Google Backups
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
2K views

Calypto's Latency Guide: Bcdedit /set Disabledynamictick Yes (Windows 8+)

The document provides tips for reducing input lag and smoothing gameplay on Windows PCs. It recommends closing unnecessary background programs, disabling hyper-threading in the BIOS, avoiding Ryzen CPUs due to higher latency, using BCDEdit commands to optimize system timers, disabling processor idle states for maximum responsiveness, and installing a service to increase timer resolution for lower latency. Measuring input latency and mouse polling before and after making changes can confirm if the tweaks are effective.

Uploaded by

Google Backups
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

Calypto’s Latency Guide

Smoother, more responsive gameplay and input

Latency is the time between a cause and an effect. An example of latency is input lag, or the time between moving your mouse and the cursor moving on the screen. A good portion
of latency comes from the operating system. In this guide, I list methods to decrease input lag. This guide is mostly oriented towards gamers, but would help for any realtime
application on Windows. Google is your friend if you’re not sure about something in this guide (avoid forums and Reddit). These tweaks aren’t listed in any particular order, but they
are all important, otherwise I wouldn’t bother listing them. Individually, many of these tweaks probably won’t produce a perceivable difference, but if you do every single tweak you
will end up with a significantly more responsive system, even if you usually can’t tell.

You’ll have to change the way you use a PC. In terms of programs, you will need a minimalistic approach. Don’t run anything in the background that you don’t absolutely need.
Heavy programs such as your web browser (Spotify and Discord are reskinned Google Chrome) will slow down your system and cause stuttering. Close them before gaming and
reopen them when you’re done. This goes for other programs. Windows will allocate CPU time to any service or program that is running in the background and will halt all other
programs until the designated program gets its CPU time. This is how multitasking works on operating systems. If you’re curious about scheduling and multitasking, read this, or this.

Measure your latency


Before doing anything in this guide, measure your latency using LatencyMon then compare after doing everything. Go to “Stats” and record your average interrupt to DPC latency,
as that is what we want to decrease. You may have to restart the test a few times to get consistently low averages. The lowest possible average is reproducible, so make a mental
average. Anything under .4us is good, under .3us is ideal but difficult to achieve, and impossible to achieve on Ryzen due to its architecture and limitations of Windows. When
testing latency, every background program should be closed.

The averages are quite low. The averages are what you are looking to improve. Intel will have lower averages than AMD. Different timers (TSC/HPET/PMT etc.) will give different results.

Measure your polling (smoothness)


The next thing you want to measure is your mouse polling using MouseTester originally written by microe and updated to 1.5.3 by dobragab. Stable mouse polling is extremely
difficult to achieve on any multipurpose operating system as it’s not considered a realtime application. For gaming, mouse polling is extremely important and stability is desired.
“Stable” polling is very hard to achieve on a system with lots of programs and services running in the background which consequently makes games run not as smoothly, so mouse
polling can be used to indirectly measure the smoothness of games. When testing polling, every background program should be closed.
To use MouseTester, click “Collect” then click and hold an empty area of MouseTester while moving the mouse in fast circles. Set Plot Type to “Frequency vs. Time.” Set “Data Point
Start” to a few (~150) milliseconds after you have started moving the mouse to crop off the initial polling rate ramp-up.

Windows 7 vs. 8.1 vs. 10

The Tweaks:
Disable Hyper-threading / Simultaneous Multithreading (SMT) in UEFI
This feature allows the operating system to see a physical core as two virtual cores. Although good for highly-threaded loads such as rendering or compiling, this feature massively
increases the system’s latency. This is because cores only have one execution unit, which is exacerbated by the operating system attempting to spread the load across both virtual
processors of the same core, which creates a stall while the core’s execution unit is busy with the second virtual processor.

It is ideal to simply disable HT/SMT if you have more cores than your game requires, or force the game to run on separate cores by changing the affinity to every other logical
processor in Task Manager or Process Lasso (example: CPUs 1,3,5,7+ or 0,2,4,6+ etc.). If you have eight or more cores, you can safely turn it off for almost all games. If you have
six or fewer cores, you might be forced to leave it on and change the affinity of the game to prevent contention between the virtual CPUs. Another benefit to disabling SMT is lower
power consumption, which raises overclocking headroom.

Avoid Ryzen CPUs


AMD used a special interconnect architecture in order to make CPUs with lots of cores for a low price. This is great if you want a workstation PC, not a gaming PC. Ryzens consist
of two sets of cores in one die and are connected via the Infinity Fabric. The Infinity Fabric is fast, but not fast enough to not have noticeable performance loss in games as well as
general high latency due to driver and OS code being executed on both “sides” of the CPU. Ryzens also have higher memory latency. Expect 1-3ms of extra input lag on a Zen
system. Minor performance improvements were made in Zen 2, but it is still a worse buy than 10th gen. Intel CPUs for latency-sensitive tasks like gaming. Starting with Zen 3
(Ryzen 5000), each CCD (core complex die) has an 8-core CCX (core complex) which greatly helps reduce intercore latency, and unifies the split L3 cache previous generations
had. This brings good performance improvements in games, but unfortunately the memory latency still suffers due to the memory controller being located on the IOD (I/O die). If you
happened to buy a Ryzen, you can still mitigate the CCX latency, but not the memory latency by doing this:
- Disable a CCX or CCD on Zen 3 (Downcore Control)
- Intercore latencies: Zen 1 / Zen+ / Zen 2 / Zen 3
- Windows 10 1903 has a scheduler update to group threads to CCXs but is not as low latency as disabling a CCX, another drawback is that you have to use Windows 10
- If you absolutely need all 8 cores, set affinity to 0-3 or 4-7 in Task Manager to minimize inter-CCX communication, alternate logical CPUs if necessary (0/2/4/6 or
8/10/12/14 odd or even doesn’t matter [for SMT on])

Disabling a CCX will reduce latency since only local cores are available

Setting 4+0 in BIOS on Ryzen dramatically reduces interrupt to DPC latency

Intel vs. AMD average interrupt to DPC latency

BCDEdit and system timers


Run Command Prompt as admin and paste these italicized commands (right click and paste only the ones you need):
- To undo a command in BCDEdit, do bcdedit /deletevalue X (where X is useplatformclock, x2apicpolicy, etc.)
bcdedit /set disabledynamictick yes (Windows 8+)
- This command forces the kernel timer to constantly poll for interrupts instead of wait for them; dynamic tick was implemented as a power saving feature for laptops but hurts
desktop performance
bcdedit /set useplatformtick yes (Windows 8+)
- Forces the clock to be backed by a platform source, no synthetic timers are allowed
- Potentially better performance, sets timer resolution to .5 instead of .501 or .499 ms
bcdedit /set tscsyncpolicy [legacy | default | enhanced] (Windows 8+)
- Tells Windows which implementation of TSC to use, try all three and see which you prefer

Disable processor idle states


By disabling idle, you can force your processor to run at max clocks if you have a locked CPU that doesn't support overclocking (mostly Intel non-K SKUs). If you have a static all-
core overclock then you can skip this step. This will minimize jitter caused by your CPU constantly changing clocks. Disabling idle makes your processor run very warm, so make
sure you have adequate cooling. Don’t use this if you have SMT/HT enabled as Windows sleeps the second logical processor of the physical processor for better performance. On
Windows 10, CPU usage will show as 100% in Task Manager. Note that disabling idle in Windows does not fully disable CPU C-states.
1. Run CMD as admin:
2. powercfg -attributes SUB_PROCESSOR 5d76a2ca-e8c0-402f-a133-2158492d58ad -ATTRIB_HIDE
3. Open power management options in Control Panel, set your plan to "Maximum Performance", open the power plan, go to advanced settings, then set “Processor idle
disable” to “Disable idle” under processor power options.
- Power saving has no place on a gaming machine
- I’ve listed the commands below which you can paste into .bat files and run from your desktop if you don’t want your CPU running at 100% all the time:

Enable idle: (less responsive, lowers temperature)


powercfg -setacvalueindex scheme_current sub_processor 5d76a2ca-e8c0-402f-a133-2158492d58ad 0
powercfg -setactive scheme_current
Disable idle: (more responsive, raises temperature)
powercfg -setacvalueindex scheme_current sub_processor 5d76a2ca-e8c0-402f-a133-2158492d58ad 1
powercfg -setactive scheme_current

SetTimerResolutionService.exe (by mbk1969)


http://www.mediafire.com/file/d8vt6ehzooah2so/SetTimerResolutionService.zip/file
Download and follow the instructions in the readme. Then, open services.msc (win+r) and set “Set Timer Resolution” service to Automatic.
- This service increases the resolution of the Windows kernel timer, which will significantly lower latency
- Don’t use this if you disabled HPET in BIOS as it results in higher memory latency
- Alternatively you can manually run a program in the background whenever you need it in case you can’t install the above
- Install Visual C++ if you get an error

Device Manager
Open Device Manager (devmgmt.msc) and disable anything you’re not using. Be careful not to disable something you use. Uninstalling a driver via Device Manager will most likely
result in it reinstalling after reboot. In order to completely disable a driver, you must disable it instead of uninstalling. When you disable something in Device Manager, the driver is
unloaded. Drivers interrupt the CPU, halting everything until the driver gets CPU time (some drivers are poorly programmed and can cause the system to halt for a very long time
[stuttering]). What to disable:
Display adapters:
- Intel graphics (if you don’t use it, ideally should be disabled in the BIOS)
Network adapters:
- All WAN miniports
- Microsoft ISATAP Adapter
Storage controllers:
- Microsoft iSCSI Initiator
System devices:
- Composite Bus Enumerator
- Intel Management Engine / AMD PSP
- Intel SPI (flash) Controller
- Microsoft GS Wavetable Synth
- Microsoft Virtual Drive Enumerator (if not using virtual drives)
- NDIS Virtual Network Adapter Enumerator
- Remote Desktop Device Redirector Bus
- SMBus
- System speaker
- Terminal Server Mouse/Keyboard drivers
- UMBus

- In the “Properties” window, be sure to disable “Power Management” for devices such as USB root hubs, network controllers, etc.

Now click on View→Devices by connection


1. Expand PCI bus, then expand all the PCI Express Root Ports
2. Locate PCI Express standard Upstream Switch Port and disable every single one with nothing connected to it (if you have it)
3. Locate Standard AHCI 1.0 Serial ATA Controller, disable any channel with nothing connected to it
4. Disable the High Definition Audio Controller that’s on the same PCIe port as your video card, also the USB controller
5. Disable any USB controllers or hubs with nothing connected to them
a. For your mouse and keyboard, disable any “HID-compliant device,” these devices are used for your mouse/keyboard software but you don’t need them always
running (if your mouse disconnects, you can use your keyboard to re-enable them)
6. Disable any PCI Express Root Port with nothing connected to it (they are usually empty NVMe or PCIe ports)

- Here is an example of someone’s device manager to give you a better idea: https://i.imgur.com/9sdzhbl.png

Disable unnecessary services


Most gaming computers will never be connected to a printer, yet the printer service is always enabled wasting CPU cycles. The same goes for other services.
The easiest way to disable services is through services.msc. Services can also be disabled via the registry if you run into a permissions issue using services.msc. In regedit,
navigate to:
HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\
From there, you can change the start type:
0 = Boot
1 = System
2 = Automatic
3 = Manual
4 = Disabled

Another way to disable services via the registry is simply with a .reg file. Use the “Properties” box in services.msc to get the name of the service, then create a .reg file with entries
such as:
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\BluetoothUserService]
"Start"=dword:00000004

[HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\Spooler]
"Start"=dword:00000004

If you get an error when trying to run the .reg, use PowerRun.

Here is my config for Windows 7: https://i.imgur.com/3BV9qnJ.png Windows 10 1709: https://i.imgur.com/VsX7AtP.png


- http://www.blackviper.com/service-configurations/ (function reference for services)

Disable your antivirus


Antivirus causes stuttering and unnecessary CPU usage. Instead, scan files before running them and do frequent system scans. Don’t visit shady websites, and don’t browse the
Web without an ad or script blocker (uBlock, uMatrix, ηMatrix [Pale Moon only]). By default Windows uses Defender, which takes a few steps to disable:
- On Windows 7, disable the Windows Defender service
- On Windows 10, follow this tutorial (use the the registry method) and disable the service

Disable optional features


By default, Windows comes with many optional features that you may never use. Disable everything that you don’t need.
- Press “Windows key+R” → type “optionalfeatures” and press enter
- Windows 7 example image: https://i.imgur.com/96DKRJD.png

Startup
Prevent useless bloat such as Discord/Realtek/Steam/RGB/mouse/keyboard software etc. from starting up with Windows. Your PC will start up faster, and once started will run fewer
unnecessary programs.
1. Press “Windows key+R” → type “msconfig” → go to the “Startup” tab
2. Uncheck everything unless you absolutely need it. Launch it manually instead.

Disable DWM (Windows 7 or lower)


This disables desktop composition which is quite irritating if you want better responsiveness outside of games, or are playing games not in exclusive fullscreen.
1. Right click on the desktop
2. Personalize
3. Select “Windows Classic”
4. Disable the “Desktop Window Manager” and “Themes” services

Windows 10 Specific
- Run this debloat script, clean everything else that the script doesn’t (check in Task Manager and Services)
- https://github.com/Sycnex/Windows10Debloater
- Disable Fullscreen Optimizations for every game you play (right click the game’s .exe → Properties → Compatibility → check “Disable Fullscreen Optimizations” )
- Enable “Hardware Accelerated Scheduling” in Graphics Settings (W10 2004+)
- Use “Real” to reduce audio buffer size

Disable power saving features


There are numerous CPU-level bugs that can’t quite be fixed with microcode related to power-saving features. To ensure maximum stability, disable any power-saving features in
the BIOS. Keep in mind your CPU will be using more energy due to no power saving which means more heat. Disable these:
- Any P states besides P0
- C states
- AMD Cool&Quiet / Intel SpeedStep (manually overclock your processor instead)

Power Plan
By default, Windows uses the “Balanced” power plan which attempts to save energy when possible. Instead, set the plan to “High Performance” in Control Panel→Power Options or
even make a custom power plan using PowerSettingsExplorer. The default “High Performance” plan still has many energy-saving features enabled which is why it is better to create a
custom plan. On W10 1803+ you may enable the “Ultimate Performance” power plan which is a slight step above the regular “High Performance” plan by pasting this command into
CMD as admin:
powercfg -duplicatescheme e9a42b02-d5df-448d-aa00-03f14749eb61

You can also use my power plan for Windows 7 which was made using the tool listed above.
1. Download this and put it on your desktop
2. Open CMD as admin and paste this: powercfg /import "%HOMEPATH%\Desktop\CalyptoPowerPlan.pow"
3. Select the power plan in the “Power Options” Control Panel window
- If it fails to import you’ll have to manually get the directory the power plan file is placed in
- “Processor idle” is disabled by default, enable it manually if issues arise

Disable Spectre and Meltdown protection / other mitigations (Windows 10/11 or updated 7/8)
- https://www.grc.com/inspectre.htm
- Example image of what it should look like when you disable mitigations
- In C:\Windows\System32, Rename “mcupdate_GenuineIntel.dll” to “mcupdate_GenuineIntel.dll.old” (change file permissions in Properties→Security)
- Rename “mcupdate_AuthenticAMD.dll” to “mcupdate_AuthenticAMD.dll.old” if using an AMD CPU
- Disable VBS/HVCI (Windows 10/11)

Process scheduling
“Quantum” is the amount of time the Windows process scheduler allocates to a program. Short quantum will improve responsiveness at the expense of more context switching, or
switching between tasks, which is computationally expensive. Think of context switching as downtime between work. Long quantum will improve performance of programs at the
expense of lower responsiveness. Why would you want long quantum, then? Well, it minimizes context switching and will make the game run smoother, resulting in better
consistency when aiming. However, short quantum could potentially decrease input lag which would improve consistency as well.

The table below lists the possible configurations that you can tell the scheduler to use. You may select Short or Long quantum, Fixed or Variable; and if you select Variable, how
much boost (no boost, 2x boost, and 3x boost) to give the foreground program (probably a game). The higher the boost, the better the FPS and smoothness will be, but you may
experience degraded input response with high boost. Generally, long quantum results in better smoothness but slightly degraded mouse response, whereas the opposite is true for
short quantum. If you use variable quantum then the boost will significantly improve smoothness and FPS at the expense of mouse response.

Open regedit and go to:


[HKEY_LOCAL_MACHINE\SYSTEM\ControlSet001\Control\PriorityControl]
- Add together the decimal values you want and enter that as a decimal to the Win32PrioritySeparation key. Example: 32+4+2. (You cannot use the third column unless you
use variable quantum. If you are using fixed quantum, ignore the third column.)
- Decimal 40 theoretically would provide the most responsive input at the expense of smoothness and FPS (short, fixed, no boost). Decimal 22 should provide the smoothest
gameplay. Dec 37 is a mix between 40 and 38. There is no set answer here, so feel free to try out lots of options. There is no restart required so you can leave regedit open
and keep trying different values while having your game open.
- Possible options: decimal 21, 22, 24, 37, 38, 40

http://recoverymonkey.org/2007/08/17/processor-scheduling-and-quanta-in-windows-and-a-bit-about-unixlinux/

Disable the Steam browser


Add "-no-browser" without quotes to your Steam shortcut to prevent steamwebhelper from opening.
- Example: https://pbs.twimg.com/media/D6Kp2QrWwAUnLw2.png
- Add “+open steam://open/minigameslist” to open a small window with a list of your games when you launch Steam
- You can also launch games with a desktop shortcut or by right-clicking the tray icon

Enable MSI mode for drivers


Some drivers default to using legacy pin-triggered interrupts, which are now emulated and are slower than using MSI (message-signaled interrupts). Enabling MSI for a driver that
does not support it might break your Windows. If something goes wrong, you can recover with last known settings (f8) or by editing the registry offline. On Windows 10 systems the
MSI utility should show whether a driver supports MSI or not.
- To enable MSI mode for drivers, download MSI_util_v2, run as admin, then select your graphics card, audio controllers, PCIe ports. Do not enable it for USB2, SATA
controller driver, or anything you’re not sure of. Here is what mine looks like:
- You can check the Device Instance Path (the address listed on the bottom) in Device Manager by right-clicking a device, going to Properties, Details, Device Instance Path
- Priorities usually hurt more than helps
- Every time you update a driver you have to redo the steps for the updated driver
- Only devices with IRQs will benefit, seen under Device Manager → View → Resources by Connection

Alleviate IRQ sharing


If devices are sharing IRQs (interrupt request lines), they will interfere with each other and increase interrupt latency. To prevent IRQ sharing, enable MSI (see above section) for
each driver that supports it and double check that you don’t have interrupt sharing. If you still have devices sharing an IRQ, consider disabling them, moving them to a different PCIe
slot, or entirely disabling them.
- Device Manager → View → Resources by connection → expand “Interrupt request (IRQ)”

Example of IRQ sharing - four devices share IRQ 16 which will cause interrupts from these devices to compete with each other

How to properly install NVIDIA drivers


The Nvidia driver executable installs a lot of bloat. Use NVSlimmer to select what you need (enable NvContainer [Nvidia control panel]). Click apply before installing.
https://forums.guru3d.com/threads/nvidia-driver-slimming-utility.423072/

The 441.41 driver has relatively minimal DPC latency spikes compared to other Nvidia drivers. Use NVSlimmer to remove bloat. You can download the 441.41 driver here by
scrolling down the list after searching: https://www.geforce.com/drivers

Nvidia 3D settings (low latency)

- Low Latency Mode should be set to “On” instead of “Ultra” if you experience low smoothness or stuttering
- Add this .reg to unhide the “SILK smoothness” option, courtesy of Guzz from Guru3D

Lock GPU clocks (Nvidia only, see the section below for Radeon cards)
KBoost (900 series Nvidia GPUs and older)
This tweak forces the GPU to always run at max clock speed. This prevents the GPU from constantly switching back and forth between different clocks which can impact
smoothness and performance. Ensure you have adequate load temperatures (<70°C) or you will shorten the lifespan of your card. This doesn’t work with Pascal or Turing
cards. Use Ctrl+L in the voltage curve editor instead for 1000 and 2000 series cards.
1. Download MSI Afterburner
2. Download and add this skin to C:\Program Files (x86)\MSI Afterburner\Skins (courtesy of user BerserkForces)
3. Open the settings and select the “User Interface” tab, then select “Default EVGA PrecisionX 16 Skin”
4. Click OK and press “KBOOST” on the right side of the window, then restart your PC

Voltage/Frequency Curve (1000, 2000, 3000 series)


Starting with Pascal, you cannot lock P-states. The card will downclock automatically based on power and thermal limits. This is an issue because in some games the
driver will not boost to its max game clock, which will increase render time. Although it is nearly impossible to prevent downclocking, you can still set a “target” frequency
based on the voltage curve in Afterburner.
- See Cancerogeno’s guide “A slightly better way to overclock and tweak your Nvidia GPU” that explains how to properly lock clocks on modern Nvidia GPUs

Radeon Settings
- Radeon Software settings:
- Graphics tab (see this image for all graphics settings):
- Radeon Anti-Lag: On
- Radeon Chill: Off
- Radeon Boost: Off
- Radeon Enhanced Sync: Off
- Wait for Vertical Refresh: Off
- Everything else: Off / Lowest
- Display tab:
- AMD FreeSync: Off is almost always better
- Virtual Super Resolution: Off
- GPU Scaling: Off (unless your monitor doesn’t have scaling support)
- Display Color Enhancement: Off
- HDCP Support: Off (unless you view DRM content)
- Change power limit to max in Performance→Tuning if your power supply is capable
- Raise VRAM clock to something stable
- Radeon Software (the control panel) requires DWM+composition in order to not crash on Windows 7, but it should be disabled once you’ve dialed the settings

Download and install MorePowerTool, this section will massively help with stuttering caused by power saving and downclocking. This tool allows you to change certain
VBIOS values without having to flash the GPU’s BIOS; instead they are read from the Registry, meaning you can easily change or revert them if something is wrong.
- Use GPU-Z to dump your current VBIOS - see this picture if you can’t find the button
- Open MorePowerTool, then use the VBIOS you dumped from GPU-Z to load the Power Play Tables to edit the settings below
- Features
- Feature Control (5xxx)
- Feature Control (6xxx)
- Power:
- You can slightly raise the GPU’s power limit but this is not an overclocking guide so be extremely conservative unless you know what you are
doing, see here for more info
- Frequency: Set reasonable minimum frequencies for GFX, SoC, and Fclk (2000, 900, 1500, respectively, are good starting values for 6xxx)
- Setting these too high will result in instability which will cause stuttering or crashing
- Ensure your GPU’s cooler is adequate to run these frequencies 24/7, otherwise your GPU will quickly degrade
- Fan: Disable “Zero RPM Enable”; this will increase stability and performance in game, while also increasing the lifetime of your card

- Once finished, click “Write SPPT” and reboot (restarting the driver is not enough)
- Use HWiNFO to make sure minimum frequencies were applied. If your GPU is still downclocking below the minimum you set, it means you have to start
over and figure out which clock was set too high (the driver will use default SPPT values if it doesn’t like a value)
- If you’re satisfied with the values you’ve set, click “Save” so you can apply these changes whenever you update drivers as it deletes the SPPT (Soft
Power Play Table)

Remove Radeon-related bloatware:


- Device Manager:
- AMD Crash Defender
- AMD Special Tools Driver (required to flash BIOS)
- High Definition Audio Controller (the one from your GPU)
- AMD Radeon USB3.1 Host Controller
- Services: disable AMD Crash Defender / AMD External Events Utility
- Task Scheduler: disable AMDInstallLauncher / AMDLinkUpdate / ModifyLinkUpdate / StartCN (Radeon Software) / StartDVR

Interrupt affinity
Using Microsoft’s Interrupt-Affinity Policy Tool (backup link), one can set affinity for a driver’s interrupts. Don’t go overboard. You may actually make the system perform worse if you
randomly start setting affinities or set too many devices onto a single core.
- Do not change the NVME driver or SATA driver. You will have to boot in safe mode to fix the registry entry. On Windows 7 you can change the SATA driver, but I’m
not sure about NVME.
- Default install dir: C:\Program Files (x86)\Microsoft Corporation\Interrupt Affinity Policy Tool (use the x64 executable)
1. Run as admin
2. Select a driver and “Set Mask” (this is for IrqPolicySpecifiedProcessors)
a. Select the cores you want the driver to be executed on
b. If you have HT or SMT, select every other CPU to ensure one core doesn’t get two interrupts at once, there is more nuance to this but generally you don’t want to
share execution units
c. If you have a Ryzen CPU, try to keep the drivers pinned to one CCX only (CPUs 0-3 and 4-7 on an eight-core, 0-2 and 3-5 on a six core)
d. Press the “Advanced…” button for other choices if you wish (not really useful on single-socket systems)
e. Do not restart any drivers for storage devices or PCIe controllers with storage devices attached, restart your PC instead to prevent risk of data loss
3. Open Device Manager and click View→Devices by connection then expand all devices, you will need this to see which devices are under certain PCIe controllers

- These devices are fine to set, as they are most responsible for input/performance:
- GPU
- Set the PCIe controller that the GPU is connected to onto the same core
- Setting the graphics card onto a single core gives the best performance, however setting it to a busy core will result in worse performance. You will have
to find out which core performs best by benchmarking, such as using menu FPS or something very consistent with high FPS (300+) that you can
reproduce easily
- Keep a mental list of cores that are the most performant
- USB controllers (also works best on a single core, test polling using MouseTester)
- PCIe Controllers (you should set the PCIe controller onto the same cores that you set its devices as, i.e. if you set the GPU to core 0, you should set the PCIe
controller as core 0 as well)
- Network controller (set to IrqPolicySpreadMessagesAcrossAllProcessors if using RSS (see example)

- This tool can also show hidden devices in MSI util if you change the setting at least once using this program
- Every time you update a driver such as the Nvidia driver you will have to change the affinity

- To check the device ID, open Device Manager, click View and select “Devices by connection,” right click on a device, Properties, Details, Physical Device Object Name

Benchmarking affinities or driver latency


- Use MouseTester for benchmarking xHCI/EHCI controller affinities
- Use liblava-demo to benchmark GPU affinities, or anything else with extremely high FPS
- Use CapFrameX or something similar to benchmark average FPS, 1% and .1% lows
- Use xperf to benchmark execution latencies for each driver. A script will make using it very easy
- My simple batch script which includes a Windows 7 download link without having to install all of ADK
- Timecard's script which uses PowerShell if you prefer that instead

Automatically setting process affinities and priorities


If you don’t use SMT/HT, you can skip this step. If you have SMT/HT enabled, Process Lasso is a useful program to set CPU affinities to every other logical processor automatically
for better performance in games. You don’t have to use this software; anything else that manages affinities persistently will work.
- Download and install: https://bitsum.com/get-lasso-pro/
- Launch your game, right click on the .exe, press “CPU Affinity,” “Always,” then select every other CPU (example here).
- For games with an anti-cheat that prevent setting affinities, you will have to set the launcher’s affinity and the game will automatically inherit the affinity. Example:
set Epic Games Launcher’s affinity, then Fortnite will automatically receive the affinity from the launcher

Other options for Process Lasso:


1. Press the Options menu, go to General Settings, Reconfigure the way Process Lasso starts. For the first box select “Do not start at login”, the second box select “Start at
login for ALL users,” press Next, “Manage ALL processes Process Lasso has access to”, click finish. This will ensure only ProcessGovernor.exe (the service) runs at login,
which will set the priorities of processes automatically.
2. Press the Options menu, go to General Settings, Refresh interval (governor), select 10s. This will minimize CPU usage. The “Other” option doesn’t seem to work.
3. We want to change the priorities of all programs to lowest priority. Highlight all programs (ctrl+a), right click, Priority class always on Idle.
4. Avoid ProBalance, IdleSaver, or SmartTrim since they do more than you
5. Under Options, CPU, More, Configure foreground boost, enable both settings.
6. Feel free to explore the other options. You don’t want the user interface (ProcessLasso.exe) running all the time, only ProcessGovernor.exe.

Low Latency Hardware (centered around gaming, not professional tasks such as low latency audio)
Disclosure: I receive a commission through these Amazon product links at no cost to you.

CPUs:
For optimal smoothness in gaming, an 8-core CPU is now the minimum. A 6-core CPU will not be able to smoothly run modern games at high frame rates. If money is tight, consider
saving for a 9700K/10700K instead of buying a 10600K. Ryzen is excluded for latency reasons. Intel 11th gen. has suboptimal C2C and RAM latency compared to 10th gen., so it
should be skipped entirely for Intel 12th gen. as it has much higher IPC while still keeping the poor traits of 11th gen.

i7-3770K (4C/8T)
- Outdated for modern games; however, the L2 hit latency is 10ns lower than current Skylake-based CPUs (~10ns vs. ~20ns)
- Uses DDR3 which is lower latency than DDR4 due to DDR4’s grouped banks and timing limits on Skylake (ex. tRCDtRP, 28 tRAS, 16 tFAW)
i7-9700K/F, i9-9900K/F (8C/8T, 8C/16T)
- 9th generation Intel with 8-core dies. Worse memory overclocking and motherboards than 10th gen, but intercore latency will be marginally better. 10th gen. CPUs also
have thinner dies which allow them to run cooler than 9th gen.
i7-10700K/F (8C)
- Lower-binned 10900K with two cores disabled. Because 10th gen. is a 10-core die, there will be a marginal latency penalty when the hopping over the disabled cores on
the ring
i9-10850K (10C)
- Failed 10900K, lower OC potential than a 10900K or 10700K, only buy it if you are fine with ~4.9GHz
- https://siliconlottery.com/pages/statistics
i9-10900K/F (10C)
- A tradeoff between latency and throughput. The two extra cores will provide additional smoothness over eight cores
- Beware of instability due to 10 cores on the ring (it was intended for only 4 cores)
i7-12700K/F (8P/4E)
- Lower-binned 12900K, expect lower clocks
- 4 fewer E cores vs. the 12900K, although they should be disabled anyway to allow much higher uncore clock and minimize latency due to poor scheduling
- 5MB less L3 cache
i9-12900K/F (8P/8E)
- Very high throughput with acceptable latency. The “best” for modern games, but beware of Alder Lake’s pitfalls (high C2C latency and minimum RAM latency)

CPU Cooling:
AIOs offer better cooling performance than air coolers because the radiators have higher fin density and the warm air can be directly exhausted out of the case. Another
benefit to having water cooling is the ability to mount a RAM fan due to the free space.
The Arctic Liquid Freezer II series coolers are generally the highest performing for the money, barring custom cooling solutions. They have thicker radiators compared to
competing AIOs (38mm vs. 27mm), a VRM fan, and higher performance fans at given noise levels. Avoid the RGB models as they are more expensive and perform worse.
The 280mm has the best price to performance ratio and should fit in most cases. Avoid the 120mm version.

Motherboards:
Cheap motherboards will not allow your hardware to run at its full potential; therefore it is important to be selective when choosing a motherboard. Motherboards with 2 DIMM slots
such as mini-ITX have higher RAM overclocking potential than boards with 4 DIMM slots due to shorter distance from the CPU. 2 DIMM ATX boards will cost more compared to
mini-ITX boards, but have much stronger VRMs. Mini-ITX motherboards also have a large drawback: the RAM is right next to the GPU which emits a lot of heat. Even if you do not
plan on drawing high current, extra EPS connectors help provide more stable power for the CPU’s VRM. Gigabyte motherboards lack user addressable IOL/RTL settings, which can
very negatively impact memory latency.

Z390:
MSI Z390i: $165
- Best cheap board for RAM OC. More RAM frequency-oriented compared to the Phantom Gaming ITX. Does not have a PS/2 port, so keep this in mind if using Windows 7
and recovery is needed
ASRock Z390 PHANTOM GAMING-ITX: $180
- One of the best VRMs in ITX form factor. More RAM timing-oriented compared to the MSI Z390i. Overall a better board than the MSI Z390i
Asus Z390 Apex XI
- Enthusiast board for Z390, very powerful VRMs and ample BIOS options; second-best option to the EVGA Z390 Dark
EVGA Z390 Dark
- Windows XP ACPI support, more efficient VRM than Apex, iGPU support, more expensive than Apex XI
- 10 layer PCB (all else equal, better signal compared to 6 or 8 layers)
- Can disable LLC

Z490:
Asus Z490i: $255
- Reportedly better RAM OC than MSI Z490i, but much weaker VRM
- 8 layer PCB
MSI Z490i Unify: $280
- Requires firmware updates for CR1 support
- 10 layer PCB
- Direct phase design
MSI Z490 Unify ATX: $280
- 6 layer PCB, decent value for quad rank, ample VRM but uses doublers
Asus Z490 XII Apex: $420
- Only 6 layer PCB, 2 DIMM slots
EVGA Z490 Dark: $550
- Windows XP support
- 10 layer PCB, 2 DIMM slots
- Direct phase design, can disable LLC

Z590:
Avoid the Z590 Gigabyte Aorus Elite/Pro due to faulty power plane design
MSI Z590 Unify-X: $380
- 8 layer PCB, 2 DIMM slots
- 16+2+1 “mirrored” VRM
Gigabyte Z590 Tachyon: $530
- 8 layer PCB, 2 DIMM slots
- Direct phase design
ASRock Z590 OC Formula: $580
- 12 layer PCB, 2 DIMM slots
- Missing “Hidden OC Item” making the UEFI nearly useless
Asus Z590 XIII Apex: $600
- 10 layer PCB, 2 DIMM slots
- Has new “Vlatch” feature which can detect and report minimum and maximum Vcore voltages through HWInfo
EVGA Z590 Dark: $600
- 10 layer PCB, 2 DIMM slots
- Direct phase design, can disable LLC

Z690:
Beware of the Realtek ALC4080 audio chip present in most higher-end Z690 boards as there is no W7 driver; ASRock and Gigabyte boards are questionable for this generation
MSI PRO Z690-A DDR4: $220
- 6 layer PCB, twin phase design
- Barebones Z690 board with a “good enough” VRM for budget builds
ASUS TUF Gaming Z690-Plus DDR4: $290
- 6 layer PCB, twin phase design
- Better feature set while still not using the ALC4080 chip
MSI MPG Z690 Edge WiFi DDR4: $310
- 6 layer PCB, direct phase design
- Cheapest direct phase board but has the ALC4080

- Z490/Z590 Motherboard Spreadsheet


- Contains detailed information such as PCB layer count, Vcore / Vccgt / Vccsa / Vccio VRM specs, among other things
- Z590 VRM List
- Contains basic VRM and IO information
- der8auer: Doubler vs. Twin: In depth VRM dive - feat. special AMD Threadripper Emulator
- Explanation of Direct vs. teamed (twin) vs. doubled VRM, with oscilloscope shots of Vcore
- Summary: Direct > teamed > doubled, all else equal

RAM:
Avoid RGB RAM if possible due to the wasted trace space and power draw which interferes with RAM operation. Anything under 1.5-1.6V is fine for daily use, after that you may
experience stability issues due to memory chips preferring lower temperatures. However, staying under 2V is fine if you have a fan over the memory and understand the stability
implications. You can limit the maximum amount of memory used by the OS to 2000M if using high voltages for additional stability. The metallic covers on DIMMs (dual in-line
memory modules) can be removed for better thermals since they use low quality thermal tape (or just glue) and cover the back of the PCB with foam which makes the RAM run
hotter than if the “heatsinks” weren’t there in the first place.

The “best” consumer RAM chip in most cases is Samsung 8Gb B-die, as it scales well with voltage allowing for lower timings. Beware of A0 PCB kits which are usually older (2017-
2018). This older PCB layout is less ideal due to the chips being farther away from the DIMM’s pins. The A2 layout is generally better, and is found in recently released kits. Listed
below are typical B-die timings. Use these as base timings; lower is better but usually more expensive and not always a better bin:
- 3200 14-14-14-XX 1.35v
- Avoid 3600 as it’s usually not always B-die i.e. 3600 16-19-19 = not B-die, 3600 16-16-16 = overpriced
- 4000 18-20-20-XX 1.35v (or better)
- 4133+
- https://pcpartpicker.com/list/FGzLp2 (non-exhaustive B-die list)
- XTREEM / Viper Steel lack temperature sensors

- Image comparison of A0/A1/A2/A3 PCBs (Source)

All else equal, dual-rank RAM performs better than single-rank RAM. However, more ranks require more voltage for the same timings and require a high quality motherboard for
better signal integrity. Keep in mind many of the kits in this list have RGB which is detrimental to performance.
- https://pcpartpicker.com/list/bTmqYH (non-exhaustive dual rank B-die list [2x16])

GPUs:
At low settings, the CPU and RAM are more important than the GPU for high refresh rate gaming. You want a stable foundation (CPU and RAM) before buying a GPU, so a 5 GHz
9700K is the minimum for driving high refresh rates. Avoid buying blower cards (one fan), avoid overly cheap cards, and be wary of problems brought up in reviews. AMD video
cards offer lots of tweaking headroom but may lack optimizations in certain games. Nvidia cards are regarded as more stable and have better optimization from game developers
(especially Unreal Engine), but lack the modding and tuning opportunities that the AMD offerings have. AMD’s video encoder is very far behind Nvidia’s; both quality and stability-
wise, so keep this in mind (streaming/recording). Linux driver support is typically better for AMD. Do not use riser cables unless you are willing to lose some performance.

RTX 3060 Ti - Roughly 2080 Super performance, does not use GDDR6X unlike the 3080/90
RTX 3070 / Ti - Roughly 2080 Ti performance for much cheaper, also no G6X
RTX 3080 / Ti - Solid performance, ASUS models have I2C support which allows for interfacing with tools such as the EVC2S for external voltage control
RTX 3090 - Flagship Nvidia offering, very high premium over 3080 Ti

- Avoid Ampere reference (Nvidia) models due to poor thermals


- Beware of GDDR6X thermals on 3080+
- Power consumption of Ampere is higher than previous generations which requires a good power supply
- Ampere NVENC untouched from Turing

RX 6800 / 6800 XT / 6900 XT


- Avoid at all costs for DX11 games (Apex Legends, Fortnite, Rocket League, etc.). When CPU single-threaded bound the performance will quickly plummet below any
Nvidia offering due to how well Nvidia’s driver handles CPU bottlenecks in DX11
- Beware of driver issues with Radeon cards
- Windows 7 drivers are extremely buggy on 5000 and 6000 series
- AMD has no equivalent of Nvidia’s Reflex which helps even when not GPU bound

Storage:
Having a fast SSD is a requirement for modern games that increasingly treat storage as RAM, as accessing files mid-game causes stuttering. For most decent games however, this
should not be an issue. NVMe SSDs have much lower latency than SATA SSDs. HDDs should be avoided unless absolutely necessary as they are inherently slow; they take longer
to turn on and seek files, while making extra noise (acoustic and EMI) and using a lot of energy to do so. Most M.2 drives are connected to ports that interface through the chipset
instead of directly to the CPU. While this isn’t terrible, there is obviously a latency penalty. However, many consumer CPUs/motherboards only have 16 PCIe lanes so this is
unavoidable without splitting lanes with the GPU.
From the software side, the operating system and storage drivers also play an important role in SSD speed. The generic NVMe driver that comes with Windows generally performs
worse than manufacturer drivers such as Samsung’s. Random accesses are generally what happen mid-game, so choosing an SSD with low latency and high RND4K read speeds
is important. Ensure your drive never thermal throttles and has some form of cooling (heatsink, fan, or both).

Avoid the Samsung 970 Evo (Plus) / 980 as they are more expensive than the P31 while offering equal or worse performance
Hynix P31: $110
- Best value NVMe SSD
- Very energy efficient
- Faster than many Gen 4 drives due to its excellent latency, but not the fastest sequential speeds
WD SN850: $145
- Solid performance in terms of latency and throughput, very similar performance to the 980 Pro but slightly cheaper and often more performant
ZET 983/900p/P4800X/905p/P5800X
- AIC and U.2 drives with much higher performance than M.2 drives, listed by order of highest to lowest latency
- Can be acquired on Ebay cheaply, but ask about wear level before buying
- Requires 20 CPU PCIe lanes to not run through chipset or force the GPU into x8 mode

Mice:
Do not use wireless peripherals unless you are willing to forgo a latency penalty of 1+ milliseconds. Higher DPI results in lower latency unless there is smoothing (HERO, Focus+,
3366, and certain 3370/3389 implementations can do 12000+ DPI without additional smoothing). Turn off RGB as it uses extra power, creates additional interference, and loads the
MCU, which can impact the performance of the mouse. Your CPU or chipset’s USB controllers will usually result in the lowest jitter and latency. Ryzen CPUs have a USB controller
on-die, while Intel CPUs have it integrated in the PCH. Regardless of your platform, avoid using external controllers such as ASMedia as they are almost always worse than the
native solutions offered by the CPU/PCH. Ideally you should disable external USB controllers through Device Manager. Ensure your polling rate is set to 1000Hz or higher.
FinalMouse mice are 500Hz by default but can be set to 1000Hz using DM1 Pro S software.

- Click latencies of various mice


- Impact of RGB on mouse performance
- Impact of DPI and polling rate on latency Source: Battle(non)sense: Razer Viper 8k Delay Analysis
- Wired vs. wireless latency Source: Battle(non)sense: Cut the Cord? Wired vs. Wireless vs. Bluetooth

- X570 chipset diagram


- Since Ryzen CPUs have on-die USB; make sure your mouse and keyboard are connected directly to the CPU’s controller, as opposed to the chipset’s. You can
test your polling using MouseTester to verify

Lower latency mice:


- AtomPalm Hydrogen (8KHz, 3360 has additional smoothing over 2000 DPI)
- Corsair Sabre Pro (8KHz, avoid the RGB variant, has additional smoothing at and over 6000 DPI [source])
- Endgame Gear XM1r (avoid the RGB variant, disable ripple control in the software to prevent smoothing at higher DPI)
- Logitech G Pro X Superlight (lower latency than other wireless mice, but you should still avoid wireless mice)
- Razer Viper 8KHz (optical switches, Motion Sync up to 4000Hz)
- Avoid Glorious and Zowie

Monitors:
Monitors have many sources of latency, starting from the GPU’s output to the display itself. CRTs have very low latency because lower signal processing is required and the nature
of CRT technology (once the signal is converted to analog, a CRT’s latency is basically the refresh rate), whereas LCDs have multiple components (such as the scalar, timing
controller, source drivers, TFT) and each have their own delays.

I will only cover 240Hz+ monitors since CRTs are no longer in production. The latency can be split into two categories: processing and pixel response time. Processing is the delay
of the monitor processing the signal, whereas response time is how quickly the pixel can change states (manifests as motion blur). An example below shows the separation of the
processing and response time latencies. Note that this selection of monitors is very limited, so don’t base your monitor purchase off a single source. Typically IPS monitors such as
the VG279QM will have lower processing latency than TN monitors, but will suffer from worse response times. Avoid monitors with PWM (pulse-width modulation) at all costs, even if
high frequency. Amazon Renewed monitors are often much cheaper than brand new monitors while only having damaged packaging. It is worthwhile as you can save a lot of money
and have a 30 day return policy if you are not content.

Source: https://www.tftcentral.co.uk/reviews/asus_rog_swift_360hz_pg259qn.htm#lag

Avoid first generation (~2017-2018) 240Hz monitors as they have higher signal and response time latencies than second generation (~2019-2020) monitors. Examples of common
1st generation monitors:
- Acer XF250Q
- ASUS XG248/258Q
- ASUS PG248/258Q
- BenQ XL2540/2546
- Dell AW2518Hf
- ViewSonic XG2530
2nd generation monitors are usually the same price so there’s little point in buying 1st generation monitors. Some examples of gen. 2 monitors:
- Asus VG258QM (RTINGS)
- Cheap entry-level TN 240/280Hz monitor but not the best motion clarity or latency
- Asus VG259QM (RTINGS)
- Smaller version of the VG279QM but the panel is optimized differently; buy at your own risk
- Asus VG279QM (RTINGS) (TFTCentral)
- At the current price of $330 the latency this monitor provides is excellent, but the response times leave a lot to be desired, size may be too large for some
- Max overdrive is mandatory on this monitor but introduces ghosting which may be unacceptable
- Omen X 25
If you can afford them, consider 360Hz monitors for their lower signal and response times compared to 240Hz monitors:
- Acer Nitro XV252Q (PCMag) (OptimumTech)
- Dell AW2521H (RTINGS)

Monitor review sites with latency measurements (do not compare latency measurements from different sources due to differing test methods)
https://www.tftcentral.co.uk/reviews.htm
https://www.rtings.com/monitor/reviews
https://pcmonitors.info/reviews/archive/

Miscellaneous links

Windows ISOs (use x64, Ultimate SP1 if Windows 7)


- https://digitalrivermirror.com/ (Windows 7)
- https://the-eye.eu/public/MSDN/ (XP, Vista, 7, 8, 8.1, 10 1511/1607)
- https://tb.rg-adguard.net/public.php (8.1 - 10 21H1)
- https://docs.google.com/spreadsheets/d/1zTF5uRJKfZ3ziLxAZHh47kF85ja34_OFB5C5bVSPumk/ (XP - 10 21H1)
- https://files.dog/MSDN/ (XP, Vista, 7, 8, 8.1, 10 1511/1607)
- https://uupdump.net/ (Most Windows 10/11 builds, however the process to get an .iso file is more involved compared to the above sites)

Windows activation
- https://www.reddit.com/r/Piracy/wiki/megathread/tools

Windows 7 driver integration


Modern motherboards only have USB 3 controllers and Windows 7 lacks the necessary drivers which will prevent you from installing. Use these resources to get around the
limitations. See “Integration of drivers into a Win7/8/10 image” on how to use NTLite to integrate the drivers listed below, then use Rufus to put the .iso NTLite creates onto a flash
drive.
- Generic USB 3 driver - supports 8KHz polling natively
- Z370 USB+NVMe iso integration tool
- Z390 USB driver - from canonkong - requires IMOD change for 2KHz+
- Z490 USB driver - from m0nkrus, NewcomerAl - requires IMOD change for 2KHz+
- Intel UHD 630 driver
- Intel I219-V driver
- Intel I225-V driver - from canonkong and daniel_k
- Realtek 2.5G driver
- Generic NVMe driver (This archive contains updates KB2990941 and KB3087873 which add NVMe support)
- Other storage drivers (NVMe, SATA AHCI/RAID)
- Full UEFI installation: https://github.com/manatails/uefiseven

Stress testing software for overclocking


RAM:
- Karhu: https://www.karhusoftware.com/ramtest/
- TM5: https://testmem.tz.ru/testmem5.htm extreme@anta777 config
- HCI: https://hcidesign.com/memtest/ MemTestHelper
- Prime95 Large FFTs: https://www.mersenne.org/download/
- MemTest86 (preliminary test before booting into Windows): https://www.memtest86.com/
CPU:
- Linpack Xtreme: https://www.techpowerup.com/download/linpack-xtreme/

Collection of airflow-oriented computer cases


https://docs.google.com/spreadsheets/d/14Kt2cAn8a7j2sGXiPGt4GcxpR3RXVcDAx9R5c2M8680

Collection of high-performance fans


https://docs.google.com/spreadsheets/d/1AydYHI_M6ov9a3OgVuYXhLEGps0J55LniH9htAHy2wU

Why latency matters


https://www.youtube.com/watch?v=vOvQCPLkPt4 - “Applied Sciences Group: High Performance Touch”

Cancerogeno’s Nvidia overclocking guide


https://docs.google.com/document/d/14ma-_Os3rNzio85yBemD-YSpF_1z75mZJz1UdzmW8GE/edit

Collection of various resources devoted to performance and input lag optimization


https://github.com/BoringBoredom/PC-Optimization-Hub

r0ach’s BIOS optimization guide


https://www.overclock.net/forum/6-intel-motherboards/1433882-gaming-mouse-response-bios-optimization-guide-modern-pc-hardware.html

How LCD Response Times are Measured, and Why 10% to 90% GtG Measurements are Moderately Deceptive
https://www.youtube.com/watch?v=MbZUgKpzTA0

Optimizing Computer Applications for Latency: Part 1: Configuring the Hardware


https://software.intel.com/en-us/articles/optimizing-computer-applications-for-latency-part-1-configuring-the-hardware

Fujitsu Primergy Server BIOS Settings for Performance, Low-Latency and Energy Efficiency
https://sp.ts.fujitsu.com/dmsp/Publications/public/wp-bios-settings-primergy-ww-en.pdf

Better HyperThreading/SMT explanation


https://web.archive.org/web/20191127071243/http://www.cs.virginia.edu/~mc2zk/cs451/vol6iss1_art01.pdf

Latency and Gaming Discord


https://discord.com/invite/QvPubRq

Follow me on Twitter
https://twitter.com/CaIypto

The fruit of my labor. One of the hardest scenarios in Kovaak’s Aim Trainer (now outdated but still a decent score)

You might also like

pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy