--vulkan-sync-cpu-memory-limit-mb
What does --vulkan-sync-cpu-memory-limit-mb do?
Specifies the sync CPU limit for total Vulkan memory.
Usage
CLILaunch Chrome with --vulkan-sync-cpu-memory-limit-mb using CLI
chrome --vulkan-sync-cpu-memory-limit-mbPuppeteerLaunch Chrome with --vulkan-sync-cpu-memory-limit-mb using Puppeteer
const browser = await puppeteer.launch({
args: ['--vulkan-sync-cpu-memory-limit-mb']
});PlaywrightLaunch Chrome with --vulkan-sync-cpu-memory-limit-mb using Playwright
const browser = await chromium.launch({
args: ['--vulkan-sync-cpu-memory-limit-mb']
});SeleniumLaunch Chrome with --vulkan-sync-cpu-memory-limit-mb using Selenium
from selenium import webdriver
options = webdriver.ChromeOptions()
options.add_argument('--vulkan-sync-cpu-memory-limit-mb')
driver = webdriver.Chrome(options=options)