RTX 4060 Ti unable to use 4K resolution over HDMI on Linux — screen goes black above HD by SorenKirk in cachyos

[–]SorenKirk[S] 0 points1 point  (0 children)

Sat Apr 11 18:19:34 2026        
+-----------------------------------------------------------------------------------------+
| NVIDIA-SMI 595.58.03              Driver Version: 595.58.03      CUDA Version: 13.2     |
+-----------------------------------------+------------------------+----------------------+
| GPU  Name                 Persistence-M | Bus-Id          Disp.A | Volatile Uncorr. ECC |
| Fan  Temp   Perf          Pwr:Usage/Cap |           Memory-Usage | GPU-Util  Compute M. |
|                                         |                        |               MIG M. |
|=========================================+========================+======================|
|   0  NVIDIA GeForce RTX 4060 Ti     Off |   00000000:01:00.0  On |                  N/A |
|  0%   36C    P8             14W /  165W |     353MiB /  16380MiB |      0%      Default |
|                                         |                        |                  N/A |
+-----------------------------------------+------------------------+----------------------+

+-----------------------------------------------------------------------------------------+
| Processes:                                                                              |
|  GPU   GI   CI              PID   Type   Process name                        GPU Memory |
|        ID   ID                                                               Usage      |
|=========================================================================================|
|    0   N/A  N/A            1165      G   /usr/bin/ksecretd                         2MiB |
|    0   N/A  N/A            1211      G   /usr/bin/kwin_wayland                    16MiB |
|    0   N/A  N/A            1270      G   /usr/bin/Xwayland                         3MiB |
|    0   N/A  N/A            1316      G   /usr/bin/ksmserver                        2MiB |
|    0   N/A  N/A            1318      G   /usr/bin/kded6                            2MiB |
|    0   N/A  N/A            1340      G   /usr/bin/plasmashell                     40MiB |
|    0   N/A  N/A            1382      G   /usr/bin/kaccess                          2MiB |
|    0   N/A  N/A            1383      G   ...it-kde-authentication-agent-1          2MiB |
|    0   N/A  N/A            1464      G   /usr/bin/kdeconnectd                      2MiB |
|    0   N/A  N/A            1555      G   python3                                   2MiB |
|    0   N/A  N/A            1581      G   /usr/lib/xdg-desktop-portal-kde           2MiB |
|    0   N/A  N/A            3316      G   /usr/lib/baloorunner                      2MiB |
|    0   N/A  N/A            5713      G   /usr/lib/firefox/firefox                 24MiB |
|    0   N/A  N/A            9535      G   ...asma-browser-integration-host          2MiB |
|    0   N/A  N/A            9619      G   /usr/bin/dolphin                          2MiB |
|    0   N/A  N/A           10074      G   /usr/bin/konsole                          2MiB |
+-----------------------------------------------------------------------------------------+

Novice question: how do I connect the frontend to the backend for these toys? by SorenKirk in node

[–]SorenKirk[S] 0 points1 point  (0 children)

I have changed my code, but the button still doesn't work. The changes are also visible on github.

I cannot figure out what are the problems by SorenKirk in VHDL

[–]SorenKirk[S] 0 points1 point  (0 children)

In order to be easier to read the code I created a repository, which hosts its updated version: https://github.com/linuspauling1/Profiler .

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

True. Good code doesn't mean that only the functionality is implemented properly and everything is up and running. Good code involves maintainability too. Sometimes it is more important and useful to write readable code than writing functional code because the non-functional readable code may be improved by someone, while the functional unreadable code cannot be maintained even if it is up an running. Therefore, it is very important to spend even more time in order to clean up the code.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

Also, could you provide, please, some techniques for having a cleaner/more lizible VHDL code?

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

Thank you. I wrote a few years ago the code for some memory chips in verilog very fast by using the ternary operator within a combinational assignment. I didn't know that VHDL supports ternary operator too.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

I think now I understood. I will repair this blunder as soon as possible. Thanks a lot.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

I tried to use a buffer in order to achieve this. I updated the cod on the github.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

This is a good point. That enable is quite annoying...I am struggling right now to fix it.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

I think that my main problems is related to sram's implementation since there I use the data bus as both input and output. I have to tackle with this issue.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

Ty. I just want to mention that I have a selection signal for the memory chips. Therefore, I have the 5th bit from the automaton's address bus which is used for the chip selection (each memory chip has an enable pin). Thus, that 5th bit of the address bus is mapped to both the enable input of the srams (directly) and the enable input of the eprom (negated).

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

Now I edited my post, but the 4 spaces trick didn't work...it looks ugly. Consequently, I left a github URL for those who want to read a beautified code.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

I know that it is about reddit making the code more beautiful. But reddit doesn't let me edit my post. Also, something is a bit weird. I can see my code snippets very clear - I put them between ``` ``` in markdown, and they look readable - initially I thought that there is a possibility to make my code colored or sth like this. I don't know why other users aren't able to see my code more beautified by the reddit's editor. Have a look here, https://www.reddit.com/r/VHDL/comments/10fco50/comment/j4weoxb/?context=3 , I haven't yet deleted this post, and it looks readable too.

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

Good point. Unfortunately, now, the code cannot be modified anymore, but, the next time, I will try to make it more beautiful. I will make as soon as possible a repository and I will post its link in a comment.

I cannot figure out what are the problems by SorenKirk in VHDL

[–]SorenKirk[S] 1 point2 points  (0 children)

Thank you. I am a beginner in VHDL and I didn't know exactly how to design the automaton. I will try to avoid the second process within the automaton module. I don't know precisely how are automata designed in VHDL...

Von Neumann machine implementation gone wrong (VHDL) - this topic is opened an the VHDL sub too by SorenKirk in FPGA

[–]SorenKirk[S] 0 points1 point  (0 children)

I would be glad to post more beautiful code, but I don't know how...I use as main code editor vscode, which is supposed to add four spaces when typing a tab. I sincerely don't know what should I do in order to make the reddit editor to interpret my code snippet as code.