Reputation: 897
I am pretty new at creating virtual machines.
I have this MacBook: Apple MacBook Pro "Core i7" 2.5 15" Mid-2015.
I run Windows 10 in a BootCamp.
I installed this virtual windows with Hyper-v inside my windows Bootcamp: https://developer.microsoft.com/en-us/windows/downloads/virtual-machines
I installed a video game inside the virtual machine.
When I run the game it uses up 100% of the CPU and is so slow it's unplayable.
It doesn't matter how much virtual processors I give it.
The same game runs pretty normally with very low CPU usage on normal Bootcamp windows.
What should I do?
Upvotes: -1
Views: 2002
Reputation: 897
I've figured it out.
The problem was that the virtual machine wasn't using the GPU.
I've fixed it by following steps here:
When installing everything normally and not doing any additional setup or tweaking etc. the virtual machine is not using the GPU.
I followed the answer by Victor Miasnikov in the link above.
Get-VMRemoteFXPhysicalVideoAdapter
Get-VMRemoteFXPhysicalVideoAdapter -Name \*Radeon\* | Enable-VMRemoteFXPhysicalVideoAdapter
Add-VMRemoteFx3dVideoAdapter -VMName <vmname>
Upvotes: 2