Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How to reduce the latency interms of hardware #4

Open
RashVm opened this issue Jul 6, 2023 · 1 comment
Open

How to reduce the latency interms of hardware #4

RashVm opened this issue Jul 6, 2023 · 1 comment

Comments

@RashVm
Copy link

RashVm commented Jul 6, 2023

As a hardware engineer, I am working on developing an FPGA hardware design for LDPC. I have a MATLAB code that is similar to the
this code. However, I am facing an issue with the processing of the Rx data. Currently, the data is coming in one by one into the array "updated_llr_vec". According to the code, the variable "l1" is calculated using the value of "updated_llr_vec(n2)- lasteta(i_m, n2)))",

                            n2 = obj.row_mat(i_m, i_n2);
                            l1 = (updated_llr_vec(n2) - lasteta(i_m, n2));

which means that if "n2" is equal to 136, I will have to wait until 136 data points are filled in the "updated_llr_vec" array before the next process can start. This will result in latency issues.

I am wondering if there is a way to avoid this latency issue and optimize the processing of the data. Is there anything that I am missing in my understanding of the code, or is there a better way to implement this process? Any insights or suggestions would be greatly appreciated.

@xofi
Copy link

xofi commented Jul 6, 2023 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants