byeproduct
byeproduct
Explore posts from servers
UBUniversal Blue
Created by byeproduct on 12/7/2024 in #🛟bazzite-help
PC crashes in steam game and then fans go on overdrive
I'm using Bazzite 41 with kernel version: 6.11.9-303.bazzite.fc41.x86_64
4 replies
UBUniversal Blue
Created by byeproduct on 12/7/2024 in #🛟bazzite-help
PC crashes in steam game and then fans go on overdrive
So, I used the command:
ujust logs-last-boot
ujust logs-last-boot
And here are the logs I thought relevant from when it crashed again today when playing Overcooked 2:
Dec 07 19:17:01 bazzite sedispatch[1307]: AVC Message regarding setroubleshoot, ignoring message
Dec 07 19:17:02 bazzite kwin_wayland[3224]: kwin_wayland_drm: Pageflip timed out! This is a kernel bug
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: ring gfx timeout, signaled seq=915511, emitted seq=915513
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: Process information: process Overcooked2.x86 pid 25857 thread Overcooked:cs0 pid 25888
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset begin!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: device lost from bus!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset end with ret = -19
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU Recovery Failed: -19
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: ring page0 timeout, signaled seq=65770, emitted seq=65783
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset begin!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: device lost from bus!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset end with ret = -19
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU Recovery Failed: -19
Dec 07 19:17:07 bazzite kwin_wayland[3224]: kwin_wayland_drm: Pageflip timed out! This is a kernel bug
Dec 07 19:17:10 bazzite systemd[1]: setroubleshootd.service: Consumed 652ms CPU time, 76.2M memory peak.
Dec 07 19:17:01 bazzite sedispatch[1307]: AVC Message regarding setroubleshoot, ignoring message
Dec 07 19:17:02 bazzite kwin_wayland[3224]: kwin_wayland_drm: Pageflip timed out! This is a kernel bug
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: ring gfx timeout, signaled seq=915511, emitted seq=915513
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: Process information: process Overcooked2.x86 pid 25857 thread Overcooked:cs0 pid 25888
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset begin!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: device lost from bus!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset end with ret = -19
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU Recovery Failed: -19
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: ring page0 timeout, signaled seq=65770, emitted seq=65783
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset begin!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: device lost from bus!
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU reset end with ret = -19
Dec 07 19:17:03 bazzite kernel: amdgpu 0000:2d:00.0: amdgpu: GPU Recovery Failed: -19
Dec 07 19:17:07 bazzite kwin_wayland[3224]: kwin_wayland_drm: Pageflip timed out! This is a kernel bug
Dec 07 19:17:10 bazzite systemd[1]: setroubleshootd.service: Consumed 652ms CPU time, 76.2M memory peak.
It doesn't crash with other graphic intensive games, e.g. games using the Unreal engine. Here are my specs: - CPU Model name: AMD Ryzen 7 5800X 8-Core Processor - GPU Model: AMD Radeon RX Vega (0x1002:0x687F:0xC1) - Vulkan Version: 1.3.12 - Driver Name: radv - Driver version: Mesa 24.2.7
4 replies
Mmarimo
Created by byeproduct on 11/20/2024 in #help-support
Import function from local module
So you guided me down the right path. I ended up converting my folder local_folder into a package using UV init and adding all dependencies in that folder environment. UV automatically added the package to my marimo environment as a workspace tool. I then used `uv pip install -e local_folder/.' to add my created package to marimo. I restarted marimo and it picked up all my functions. UV really made my life so easy. I didn't have to configure anything else. Plus, now I know how to create python packages 👻
9 replies
Mmarimo
Created by byeproduct on 11/20/2024 in #help-support
Import function from local module
Thanks for the feedback. It's weird. I've got the files that you am trying to import into my notebook running in a sub-folder from the directory I am running marimo from. I checked in the terminal and in the notebook using os.getcwd(), and both return the same folder as the working folder.
I just upgraded to marimo 0.9.20, as I thought it may be a version issue, and it still gives me the missing package error when I try to use: from local_folder.my_python_script import my_function Is there a setting I need to enable? I have the default package manager set to UV and I can see all the installed packages. My notebook seems to see my local import from ... import ... as if it needs to be evaluated as a UV package and then finds that it is not installed. Is there a way to swap out the import resolution to prioritise checking if the folder exists first? I have added init.py to both the current working directory and within the folder itself.
9 replies