| 3 Nov 2024 |
roshan | byteio.in 🌷 | yes , Sir | 15:04:17 |
K900 | Try booting with amdgpu.dcdebugmask=0x10 | 15:04:24 |
roshan | byteio.in 🌷 | omg, seems this fixed my issue. do i need to set anything else ?
i have amd r7 8845hs | 15:10:55 |
K900 | No | 15:11:05 |
K900 | It's a known kernel bug | 15:11:17 |
roshan | byteio.in 🌷 | BTW, these are my current config for gpu setting
boot.initrd.kernelModules = [ "amdgpu" ];
boot.kernelPackages = pkgs.linuxPackages_latest;
boot.kernelParams = [
"amdgpu.dc=1"
"amdgpu.dcdebugmask=0x10"
];
services.xserver.videoDrivers = ["amdgpu"];
hardware.enableRedistributableFirmware = true;
hardware.graphics.extraPackages = with pkgs; [
amdvlk
];
hardware.amdgpu.amdvlk.enable = true;
hardware.amdgpu.opencl.enable = true;
| 15:11:39 |
roshan | byteio.in 🌷 | In reply to @k900:0upti.me No can i any reference link i want to read it | 15:12:08 |
roshan | byteio.in 🌷 | In reply to @k900:0upti.me No * can i get any reference link i want to read it | 15:12:17 |
K900 | You can definitely remove most of that | 15:12:34 |
K900 | At least amdgpu.dc=1 is the default | 15:12:58 |
K900 | services.xserver.videoDrivers = ["amdgpu"]; is bad | 15:13:04 |
K900 | AMDVLK is unnecessary | 15:13:08 |
K900 | And do you actually use OpenCL | 15:13:37 |
roshan | byteio.in 🌷 | ok sir, removing it | 15:13:31 |
roshan | byteio.in 🌷 | Thank you so much | 15:13:44 |
K900 | Also see https://gitlab.freedesktop.org/drm/amd/-/issues/3647 for the kernel bug | 15:13:54 |
K900 | (and linked issues) | 15:13:56 |
roshan | byteio.in 🌷 | In reply to @k900:0upti.me And do you actually use OpenCL i don't know about it i got the code from github repo | 15:14:00 |