Report 1: First steps of the course development

1. Introduction.

The project that we can see in this document consists of the parallelization of a code provided by the course mentor. The aforementioned code is made under the programming language called “R” and allows us to make a prediction using various statistical methods.

2. Development.

In this section, we will see how the code has been parallelized using two methods: “Doparallel” and “Lapply”. In the same way, we will see how we have modified both the sequential code and the parallel code to be able to measure the execution times of each section of interest of the code, as well as the total execution time.

2.1 Sequential time measurements.

For this section, the code provided by the mentor has been understood and has been modified following the steps that we can see below.

  • We have added the tictoc library.
  • Inside the main loop we have added the function “System.time” (it allows us to be able to measure the total execution time).
  • The tictoc library has been used to measure each of the parts of interest (load files, create and save the model and generate the prediction).
  • We save each calculated time in a separate Excel file.

2.2 DoParrallel.

For this section, we have modified the code obtained from the previous section under the following steps:

  • A function called “ExecuteCode” has been created that, through a parameter that we send to it, allows us to be able to carry out all the main code for a single consumer.
  • An external loop has been created that allows us to go through the list of consumers using a “Foreach” and the number of cores to be used has been registered.

2.3 Lapply.

For this section, the changes that we can see below have been made:

  • Se ha creado un clúster con 3 cores y se ha agregado a la función “parSapply” junto con el nombre de la función a ejecutar.
  • Se ha agregado el bucle dentro de la función para ganar mayor simplicidad en el código.

3. Comparative.

Next, we can see a comparison of the execution times obtained for each of the implementations made.

Comparison results

As we can see in the previous image, the highest execution time obtained is in the sequential version (of course). Similarly, it should be noted that the times obtained in each parallel version are more or less similar, therefore, we should not opt ​​for any at least for now.

Leave a Reply

Your email address will not be published. Required fields are marked *

*

This site uses Akismet to reduce spam. Learn how your comment data is processed.