--gpu-program-cache-size-kb
What does --gpu-program-cache-size-kb do?
Sets the maximum size of the in-memory gpu program cache, in kb
Usage
CLILaunch Chrome with --gpu-program-cache-size-kb using CLI
chrome --gpu-program-cache-size-kbPuppeteerLaunch Chrome with --gpu-program-cache-size-kb using Puppeteer
const browser = await puppeteer.launch({
args: ['--gpu-program-cache-size-kb']
});PlaywrightLaunch Chrome with --gpu-program-cache-size-kb using Playwright
const browser = await chromium.launch({
args: ['--gpu-program-cache-size-kb']
});SeleniumLaunch Chrome with --gpu-program-cache-size-kb using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--gpu-program-cache-size-kb')
driver = webdriver.Chrome(options=options)