this bugcheck was while chrome was running, something started running from a strange location.
maybe turn off chrome extensions?
I would now change your memory dump type to kernel and provide the memory.dmp file. It will be much bigger but will show everything that is running.
notes:
looks like
AVoluteSS3Vad.sys Tue Aug 6 01:38:40 2019
still running.
RzDev_022b.sys Wed Aug 3 03:14:05 2022 (this was updated)
RzCommon.sys Mon Sep 25 20:29:57 2023
you could turn on verifier.exe testing to make the system bugcheck faster if the problem is in a driver.
basically start cmd.exe as an admin
then run
verifier.exe /standard /all /bootmode oneboot
https://learn.microsoft.com/en-us/windows-hardware/drivers/devtest/verifier-command-line
the /bootmode options are useful to make it easier to turn of verifer. This option will only have verifier on for the next boot and will turn it off automatically. Otherwise you have to turn it off by running cmd.exe as an admin then run
verifier.exe /reset
(or your machine will run slowly until you run the command)
i think AVoluteSS3Vad.sys fails verifier testing so you might want to disable this driver with microsft autoruns64 before you do any testing. (assuming you do not think the driver is the cause of problems)
you could also use the option to exclued a driver from testing by adding
/driver.exclude DriverList command option to the verifier.
something like
verifier.exe /standard /all /driver.exclude avolutess3vad.sys /bootmode oneboot
this would run standard tests on all driver except your avolutess3vad.sys 3d sound driver which we already know messes up the system because of some DMA problem.
(i would disable the driver with auto runs rather than skipping the problem driver since it might screw up something else)
note: RBG light controllers also tend to mess up the system when you have more than one led light.
logi_lamparray.sys Mon Apr 15 11:33:13 2024
mostly you see it with mouse light control, AIO coolers with light, fan lights, RAM lights. Often you have to update the firmware of the device to avoid the problems.
you might also consider running a testing tool to check out your amd processor. Someone would have to recommend one. I normally just run a stress test like prime95 but there may be a better tool now for trying to isolate specific areas/functions of the cpu. intel has there own tool(intel processor diagnostics tool) I would expect amd should have something similar.
(simple tool that tests basic functions rather than a stress tool)
in your case control is moving from different areas.
kernel, user mode, and what looks like kernel heap.
none were within a known module.
more notes:
vwifibus.sys (virtual wi fi bus driver)
vwififlt.sys (virtual wifi fliter driver)
vwifimp.sys (virtual network miniport driver)
running (are these network virtual drivers? do they require the bios virtualization to be turned on?
take a look at the last two entries in this thread:
https://learn.microsoft.com/en-us/answers/questions/1496217/hypervisor-error-blue-screen
person, disabled hypervisor in bios then had to disable the software in windows to prevent bugchecks.