Hello, can you please asist me with this code because I don't know what to do. I put the question below, I know it mentioned threadpool but I don't need help with that I only need help with the cilent.c I have add the code in the photo. Again I only need help with the cilent.c and you have to use the code that I give you to give you a start. Can you use my code and only my code ad only need help with cilent.c. question that I need help with: You need to use the pthread for matrix multiplication. Each thread from the threadpool should be responsible for computing only a part of the multiplication (partial product as shown in the above picture – all Ti(S) are called a partical product). Your main thread should split the matrices accordingly and create the partial data arrays that are needed to compute each Ti. You must create a unique task with the data and submit it to the job queue. You can compute the partial products concurrently as long as you have threads available in the threadpool. You have to remove the task the from queue and submit to a thread in the threadpool. You should define the number of threads to be 5 and keep it dynamic so that we can test the same code with a higher or lower number of threads as needed. When all the partial products are computed all the threads in the threadpool should exit and the main thread should regain control, print the complete result to the output file
Hello, can you please asist me with this code because I don't know what to do. I put the question below, I know it mentioned threadpool but I don't need help with that I only need help with the cilent.c I have add the code in the photo.
Again I only need help with the cilent.c and you have to use the code that I give you to give you a start. Can you use my code and only my code ad only need help with cilent.c.
question that I need help with:
You need to use the pthread for matrix multiplication. Each thread
from the threadpool should be responsible for computing only a part
of the multiplication (partial product as shown in the above picture –
all Ti(S) are called a partical product). Your main thread should split
the matrices accordingly and create the partial data arrays that are
needed to compute each Ti. You must create a unique task with the
data and submit it to the job queue. You can compute the partial
products concurrently as long as you have threads available in the
threadpool. You have to remove the task the from queue and submit
to a thread in the threadpool. You should define the number of
threads to be 5 and keep it dynamic so that we can test the same
code with a higher or lower number of threads as needed. When all
the partial products are computed all the threads in the threadpool
should exit and the main thread should regain control, print the
complete result to the output file
Step by step
Solved in 3 steps with 5 images