How can I speed up this code? when I execute this code take much time

28 comentarios

Adam Danz
Adam Danz el 3 de En. de 2020
Use Matlab's profiler to perform an execution time analysis of your code. It will show you where the bottle neck is.
If there is a loop that you'd like to vectorize, isolate that section, put it into a minimal working example, and someone (including myself) may be able to help out with that.
amenah mwuafaq
amenah mwuafaq el 3 de En. de 2020
Editada: per isakson el 5 de En. de 2020
I expected the defect in these lines
if isempty(G{nodo,1})==1
x=size(Y_TX{1,1},1)
g_loc=gf(randi(2*q-1,[l,x]),q);
G{nodo,1}=g_loc;
end;
what you advise me to change in the code to speed up my code
Adam Danz
Adam Danz el 4 de En. de 2020
If you can provide a minimal working example, we can dig into your code to see if anything can be improved.
Adam Danz
Adam Danz el 4 de En. de 2020
Hi amenah,
I removed the comments with the additional attached files and code since it seems to be the same as the code you attached in your question. If those files have been updated, please edit your question and supply the new files. That will help to keep things organized in case other are following this thread.
When I try to run your file, RLNC.m, I get this error because I do not have the windows.jpg files Please attach them an any other files/variables we may need to run your code.
Error using fread
Invalid file identifier. Use fopen to generate a valid file identifier.
Error in RLNC (line 42)
X=fread(fid2);
Also, why are you reading that file twice?
fid=fopen('windows.jpg');
fid2=fopen('windows.jpg');
amenah mwuafaq
amenah mwuafaq el 4 de En. de 2020
When you execute the code using this image a new file will be formed called data .The problem is when this image changes in a larger size, it takes a long time for the code to be executed.
Adam Danz
Adam Danz el 4 de En. de 2020
Could you provide an image that causes the slowdown?
amenah mwuafaq
amenah mwuafaq el 5 de En. de 2020
This image took 7 hours to implement
And you can choose any image you have with a large size and notice a lot of time to implement
per isakson
per isakson el 5 de En. de 2020
Editada: per isakson el 5 de En. de 2020
"I expected the defect in these lines ..." For what reason?
I executed your code with the small image and then the large image for a few minutes. A major part of the time was used by the class, GF (Galois field array), especially the method, vertcat, which was called half a million times.
It isn't realistic to try to optimise GF for speed. Remains to call its methods fewer times. Is that possible?
amenah mwuafaq
amenah mwuafaq el 5 de En. de 2020
Thanks for trying to help me
What do you suggest I do?
The "gf" function is so necessary that I can't do without it
Adam Danz
Adam Danz el 5 de En. de 2020
I also ran the profiler on both images and had the same results as per isakson.
The lack of comments and obscure variable names make it difficult to reverse-engineer the goal of the code which prevents me from thinking of potential alternatives. If there's a specific section you'd like to focus on I could suggest faster methods if there are any. But the profiler report didn't put a spot light on any obvious bottlenecks other than very many repeated calls to several functions.
per isakson
per isakson el 5 de En. de 2020
Editada: per isakson el 5 de En. de 2020
"What do you suggest I do?"
Caveats
  • I don't understand the goal of the your code and I will not try to find out based on the code.
  • Maybe it isn't possible to improve the speed significantly.
My conclusion from the profiler report is that there is no simple fix to improve the speed significantly. What's your goal regarding speed? Possibly, something can be done with the Parallel Computing Toolbox.
I think you need to rewrite the code based on a thorough understanding of the problem that you want to solve.
amenah mwuafaq
amenah mwuafaq el 5 de En. de 2020
Code action is a network of nodes that sends an image, then encodes it, then sends it through an intermediate node. The final node receives the image, decodes it, and sends it to node n
As for speed, I need to send and receive pictures at high speed
per isakson
per isakson el 5 de En. de 2020
Editada: per isakson el 5 de En. de 2020
"send and receive pictures at high speed" To me that sounds impossible to achieve by improving your code.
amenah Muwafaq
amenah Muwafaq el 5 de En. de 2020
You mean, there is no hope of improving this code..
per isakson
per isakson el 5 de En. de 2020
Yes, that's my judgement.
amenah Muwafaq
amenah Muwafaq el 5 de En. de 2020
I don't have much time to build code from scratch. What do you recommend that I do?
g_loc=gf(randi(2*q-1,[l,x]),q);
Is that line correct? q is 8, so you are producing random values in the range 1 to 15, which only requires gf(values,4) not gf(values,8) ? When you use gf() the restriction is that the values must be in the range 0 to 2^q-1 not in the range 1 to 2*q-1 . Values in the range 1 to 2*q-1 only requires gf(values, log2(q)+1)
amenah Muwafaq
amenah Muwafaq el 7 de En. de 2020
Editada: amenah Muwafaq el 7 de En. de 2020
Walter Roberson Sorry I did not see your question, yes the value of q = 8, but what did you mean in the rest of your questions?
amenah Muwafaq
amenah Muwafaq el 7 de En. de 2020
Walter Roberson Do you mean to replace this 2*q-1 with this gf(values, log2(q)+1)?
No, I mean you need to decide between
g_loc=gf(randi(2*q-1,[l,x]),q);
which is your existing code that is only using half the capability of your gf, and
g_loc=gf(randi(2^q-1,[l,x]),q);
which uses the full capabilities of the gf .
amenah mwuafaq
amenah mwuafaq el 7 de En. de 2020
Is there a difference between the two? Can you provide me information about it?
Walter Roberson
Walter Roberson el 8 de En. de 2020
What is the purpose of your creating random galois fields at that point? Why, for example, are you not just creating a fixed one or something based on 0:(l*x-1) ? Or why not just based on randi([0 1], [l,x],1) instead of randi([2*q-1,[l,x],q) ?
amenah Muwafaq
amenah Muwafaq el 8 de En. de 2020
This is because of the type of coding I'm working on,"Random Linear Network Coding" which depends on the galois fields and random.
Unless you switch to
g_loc=gf(randi([0 2^q-1],[l,x]),q);
then your RLNC system will be more vulerable to data corruption than you expect. The degree to which it is worse will increase greatly as q increases. For q=4 it is only half as good as it should be; for q=5 it is only about 1/6 as good as it should be; for q=8 it would be less than 6% as good as it should be.
amenah mwuafaq
amenah mwuafaq el 8 de En. de 2020
Editada: amenah mwuafaq el 8 de En. de 2020
Thank you for helping me.
I changed the equation to
g_loc=gf(randi([0 2^q-1],[l,x]),q);
But the code didn't improve. And I need high speed.
Is there some treatment to improve speed?
amenah mwuafaq
amenah mwuafaq el 9 de En. de 2020
Do you have resources to advise me on how to use (Galois field)?
Walter Roberson
Walter Roberson el 9 de En. de 2020
No.
amenah Muwafaq
amenah Muwafaq el 9 de En. de 2020
Thank you

Iniciar sesión para comentar.

 Respuesta aceptada

per isakson
per isakson el 6 de En. de 2020
Editada: per isakson el 6 de En. de 2020

0 votos

"I don't have much time [...]. What do you recommend that I do?"
Set Specific Goals. Your goal must be clear and well defined.
  • Chose a small, a medium and a large picture.
  • Your computer system
  • Set acceptable execution times, number of seconds, for encoding and decoding, respectively.
  • ...
Search the File Exchange for galois. There are a handfull of relevant submissions.
Post a new question with a specific title, one that will catch the eye of someone who knows something about encoding, decoding and Galois fields. Carefully select a handfull of tags.
If you have the Parallel Computing Toolbox, a suitable graphical card and some experience, then assess the potential of parallel operations.
Google might find a FORTRAN or C library that you can use to make a mex-file.

Más respuestas (0)

Categorías

Etiquetas

Preguntada:

el 3 de En. de 2020

Comentada:

el 9 de En. de 2020

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by