1. Homepage
  2. Programming
  3. COMP528 Multi-Core and Multi-Processor Programming Assignment 1: Travelling Salesman Problem

COMP528 Multi-Core and Multi-Processor Programming Assignment 1: Travelling Salesman Problem

Engage in a Conversation
LiverpoolCOMP528Multi-Core and Multi-Processor ProgrammingCTravelling Salesman ProblemSmallest Sum Insertion

Assignment 1 Resit
CourseNana.COM

COMP528 CourseNana.COM

In this assignment, you are asked to implement 2 algorithms for the Travelling Salesman Problem. This document explains the operations in detail, so you do not need previous knowledge. You are encouraged to begin work on this as soon as possible to avoid the queue times on Barkla closer to the deadline. We would be happy to clarify anything you do not understand in this report. CourseNana.COM

1 The Travelling Salesman Problem (TSP) CourseNana.COM

The travelling salesman problem is a problem that seeks to answer the following question: ‘Given a list of vertices and the distances between each pair of vertices, what is the shortest possible route that visits each vertex exactly once and returns to the origin vertex?’. CourseNana.COM

202 20 52422 CourseNana.COM

2 2 241 1 CourseNana.COM

4242 22251251 CourseNana.COM

32142 2 23323 CourseNana.COM

52422 424 CourseNana.COM

(a) A fully connected graph (b) The shortest route around all vertices CourseNana.COM

Figure 1: An example of the travelling salesman problem CourseNana.COM

The travelling salesman problem is an NP-hard problem, that meaning an exact solution cannot be solved in polynomial time. However, there are polynomial solutions that can be used which give an approximation of the shortest route between all vertices. In this assignment you are asked to implement 2 of these. CourseNana.COM

11 CourseNana.COM

1.1 Terminology
We will call each point on the graph the vertex. There are 6 vertices in Figure 1. CourseNana.COM

We will call each connection between vertices the edge. There are 15 edges in Figure 1. CourseNana.COM

We will call two vertices connected if they have an edge between them. CourseNana.COM

The sequence of vertices that are visited is called the tour. The tour for Figure 1(b) is CourseNana.COM

(0, 2, 4, 5, 3, 1, 0). Note the tour always starts and ends at the origin vertex. CourseNana.COM

A partial tour is a tour that has not yet visited all the vertices. CourseNana.COM

2 The solutions
CourseNana.COM

2.1 Preparation of Solution CourseNana.COM

You are given a number of coordinate files with this format: CourseNana.COM

x,y 4.81263062736921, 8.34719930253777 2.90156816804616, 0.39593575612759 1.13649642931556, 2.27359458630845 4.49079099682118, 2.97491204443206 9.84251616851393, 9.10783427307047 CourseNana.COM

Figure 2: Format of a coord file CourseNana.COM

Each line is a coordinate for a vertex, with the x and y coordinate being separated by a comma. You will need to convert this into a distance matrix. CourseNana.COM

0.000000 8.177698 7.099481 5.381919 8.177698 0.000000 2.577029 3.029315 7.099481 2.577029 0.000000 3.426826 5.381919 3.029315 3.426826 0.000000 5.087073 11.138848 11.068045 8.139637 CourseNana.COM

5.087073 11.138848 11.068045 8.139637 0.000000 CourseNana.COM

Figure 3: A distance matrix for Figure 2 CourseNana.COM

To convert the coordinates to a distance matrix, you will need make use of the euclidean distance formula. CourseNana.COM

d=p(xi xj)2 +(yi yj)2 Figure 4: The euclidean distance formula CourseNana.COM

Where: d is the distance between 2 vertices vi and vj, xi and yi are the coordinates of the vertex vi, and xj and yj are the coordinates of the vertex vj. CourseNana.COM

2.2 Smallest Sum Insertion CourseNana.COM

The smallest sum insertion algorithm starts the tour with the vertex with the lowest index. In this case that is vertex 0. Each step, it selects a currently unvisited vertex where the total edge cost to all the vertices in the partial tour is minimal. It then inserts it between two connected vertices in the partial tour where the cost of inserting it between those two connected vertices is minimal. CourseNana.COM

These steps can be followed to implement the smallest sum insertion algorithm. Assume that the indices i, j, k etc; are vertex labels unless stated otherwise. In a tiebreak situation, always pick the lowest index(indices). CourseNana.COM

1. Start off with a vertex vi. CourseNana.COM

Figure 5: Step 1 of Smallest Sum Insertion
2. Find a vertex
vj such that Pt=Length(partialtour) dist(vt, vj) is minimal. CourseNana.COM

Figure 6: Step 2 of Smallest Sum Insertion minimal. CourseNana.COM

4. Repeat steps 2 and 3 until all of the ver1tices have been visited. CourseNana.COM

2023-2024 CourseNana.COM

3. Insert vj between two connected vertices in the partial tour vn and vn+1, where n is a position in the partial tour, such that dist(vn, vj) + dist(vn+1, vj) - dist(vn, vn+1) is CourseNana.COM

Figure 7: Step 3 of Smallest Sum Insertion CourseNana.COM

(a) Select the vertex CourseNana.COM

(b) Insert the vertex CourseNana.COM

Figure 8: Step 4 of Smallest Sum Insertion CourseNana.COM

5 CourseNana.COM

00 CourseNana.COM

1111 2525 CourseNana.COM

32 32 44 CourseNana.COM

(a) Select the vertex (b) Insert the vertex CourseNana.COM

Figure 9: Step 5 of Smallest Sum Insertion CourseNana.COM

44 CourseNana.COM

2023-2024 4 CourseNana.COM

55 1100 11 CourseNana.COM

2525 33 CourseNana.COM

44 CourseNana.COM

(a) Select the vertex (b) Insert the vertex CourseNana.COM

Figure 10: Step 6 of Smallest Sum Insertion CourseNana.COM

11 CourseNana.COM

0202 CourseNana.COM

11 CourseNana.COM

3636 2525 CourseNana.COM

33 4444 CourseNana.COM

(a) Select the vertex (b) Insert the vertex CourseNana.COM

Figure 11: Step 7 of Smallest Sum Insertion CourseNana.COM

1 2023-2024 1 5 CourseNana.COM

2.3 MinMax Insertion CourseNana.COM

The minmax insertion algorithm starts the tour with the vertex with the lowest index. In this case that is vertex 0. Each step, it selects a currently unvisited vertex where the largest edge to a vertex in the partial tour is minimal. It then inserts it between two connected vertices in the partial tour where the cost of inserting it between those two connected vertices is minimal. CourseNana.COM

These steps can be followed to implement the minmax insertion algorithm. Assume that the indices i,j,k etc; are vertex labels unless stated otherwise. In a tiebreak situation, always pick the lowest index(indices). CourseNana.COM

1. Start off with a vertex vi. CourseNana.COM

Figure 12: Step 1 of Minmax Insertion CourseNana.COM

2. Find a vertex vj such that Max(dist(vt,vj)) is minimal, where t is the list of elements in the tour. CourseNana.COM

Figure 13: Step 2 of Minmax Insertion CourseNana.COM

4 CourseNana.COM

3. Insert vj between two connected vertices in the partial tour vn and vn+1, where n is a position in the partial tour, such that dist(vn, vj) + dist(vn+1, vj) - dist(vn, vn+1) is CourseNana.COM

5 CourseNana.COM

2023-2024 2 6 36 CourseNana.COM

minimal.
4. Repeat steps 2 and 3 until all of the vertices have been visited.
CourseNana.COM

Figure 14: Step 3 of Minmax Insertion CourseNana.COM

(a) Select the vertex CourseNana.COM

(b) Insert the vertex CourseNana.COM

Figure 15: Step 4 of Minmax Insertion CourseNana.COM

5 CourseNana.COM

00 CourseNana.COM

1111 2525 CourseNana.COM

32 32 44 CourseNana.COM

(a) Select the vertex (b) Insert the vertex CourseNana.COM

Figure 16: Step 5 of Minmax Insertion CourseNana.COM

44 CourseNana.COM

2023-2024 7 CourseNana.COM

55 11 CourseNana.COM

00 11 CourseNana.COM

2525 33 CourseNana.COM

44 CourseNana.COM

(a) Select the vertex (b) Insert the vertex CourseNana.COM

Figure 17: Step 6 of Minmax Insertion CourseNana.COM

11 CourseNana.COM

0202 CourseNana.COM

11 CourseNana.COM

3636 2525 CourseNana.COM

33 4444 CourseNana.COM

(a) Select the vertex (b) Insert the vertex CourseNana.COM

Figure 18: Step 7 of Minmax Insertion CourseNana.COM

3 Running your programs
CourseNana.COM

Your program should be able to be ran like so:
$ ./<program name>.exe <coordinate file name> <output file name> CourseNana.COM

Therefore, your program should accept a coordinate file, and an output file as arguments. Note that C considers the first argument as the program executable. Both implementations should read a coordinate file, run either smallest sum insertion or MinMax insertion, and write the tour to the output file. CourseNana.COM

3.1 Provided Code CourseNana.COM

You are provided with the file coordReader.c, which you will need to include this file when compiling your programs. CourseNana.COM

readNumOfCoords(): This function takes a filename as a parameter and returns the number of coordinates in the given file as an integer. CourseNana.COM

readCoords(): This function takes the filename and the number of coordinates as parameters, and returns the coordinates from a file and stores it in a two-dimensional array of doubles, where coords[i][0] is the x coordinate for the ith coordinate, and coords[i][1] is the y coordinate for the ith coordinate. CourseNana.COM

writeTourToFile(): This function takes the tour, the tour length, and the output filename as parameters, and writes the tour to the given file. CourseNana.COM

Instructions CourseNana.COM

Implement a serial solution for the smallest sum insertion and the MinMax insertion. Name these: ssInsertion.c, mmInsertion.c. CourseNana.COM

Implement a parallel solution, using OpenMP,for the smallest sum insertion and the MinMax insertion algorithms. Name these: ompssInsertion.c, ompmmInsertion.c. CourseNana.COM

Create a Makefile and call it ”Makefile” which performs as the list states below. With- out the Makefile, your code will not grade on CodeGrade. CourseNana.COM

– make ssi compiles ssInsertion.c and coordReader.c into ssi.exe with the GNU compiler CourseNana.COM

– make mmi compiles mmInsertion.c and coordReader.c into mmi.exe with the GNU compiler CourseNana.COM

  • –  make ssomp compiles ompssInsertion.c and coordReader.c into ssomp.exe with CourseNana.COM

    the GNU compiler CourseNana.COM

  • –  make mmomp compiles ompmmInsertion.c and coordReader.c into mmomp.exe with the GNU compiler CourseNana.COM

  • –  make issomp compiles ompssInsertion.c and coordReader.c into issomp.exe with the Intel compiler CourseNana.COM

  • –  makeimmompcompilesompmmInsertion.candcoordReader.cintoimmomp.exe the Intel compiler CourseNana.COM

  • Test each of your parallel solutions using 1, 2, 4, 8, 16, and 32 threads, recording the time it takes to solve each one. Record the start time after you read from the coordinates file, and the end time before you write to the output file. Do all testing with the large data file. CourseNana.COM

  • Plot a speedup plot with the speedup on the y-axis and the number of threads on the x-axis for each parallel solution. CourseNana.COM

  • Plot a parallel efficiency plot with parallel efficiency on the y-axis and the number of threads on the x-axis for each parallel solution. CourseNana.COM

  • Write a report that, for each solution, using no more than 1 page per solution, describes: your serial version, and your parallelisation strategy. CourseNana.COM

  • In your report, include: the speedup and parallel efficiency plots, how you conducted each measurement and calculation to plot these, and screenshots of you compiling and running your program. These do not contribute to the page limit. CourseNana.COM

  • Your final submission should be uploaded onto CodeGrade. The files you upload should be: CourseNana.COM

    1. Makefile
    2. ssInsertion.c
    3. mmInsertion.c
    4. ompssInsertion.c
    5. ompmmInsertion.c
    6. report.pdf
    7. The slurm script you used to run your code on Barkla. CourseNana.COM

5 Hints CourseNana.COM

You can also parallelise the conversion of the coordinates to the distance matrix. When declaring arrays, it’s better to use dynamic memory allocation. You can do this by: CourseNana.COM

int oned array = (int )malloc(numOfElements sizeof(int)); For a 2-D array: CourseNana.COM

int ∗∗twod array = (int ∗∗)malloc(numOfElements sizeof(int)); for (int i = 0; i < numOfElements; i ++){ CourseNana.COM

twod array[i] = (int )malloc(numOfElements sizeof(int)); } CourseNana.COM

5.1 MakeFile CourseNana.COM

You are instructed to use a MakeFile to compile the code in any way you like. An example of how to use a MakeFile can be used here: CourseNana.COM

{make command}: {target files} {compile command} CourseNana.COM

ssi : ssInsertion .c coordReader.c
gcc ssInsertion.c coordReader.c
o ssi.exe lm CourseNana.COM

Now, on the command line, if you type ‘make ssi‘, the compile command is automatically executed. It is worth noting, the compile command must be indented. The target files are the files that must be present for the make command to execute. CourseNana.COM

This command may work for you and it may not. The point is to allow you to compile however you like. If you want to declare the iterator in a for loop, you would have to add the compiler flag std=c99. fopenmp is for the GNU compiler and qopenmp is for the Intel Compiler. If you find that the MakeFile is not working, please get in contact as soon as possible. CourseNana.COM

Get in Touch with Our Experts

WeChat (微信) WeChat (微信)
Whatsapp WhatsApp
Liverpool代写,COMP528代写,Multi-Core and Multi-Processor Programming代写,C代写,Travelling Salesman Problem代写,Smallest Sum Insertion代写,Liverpool代编,COMP528代编,Multi-Core and Multi-Processor Programming代编,C代编,Travelling Salesman Problem代编,Smallest Sum Insertion代编,Liverpool代考,COMP528代考,Multi-Core and Multi-Processor Programming代考,C代考,Travelling Salesman Problem代考,Smallest Sum Insertion代考,Liverpoolhelp,COMP528help,Multi-Core and Multi-Processor Programminghelp,Chelp,Travelling Salesman Problemhelp,Smallest Sum Insertionhelp,Liverpool作业代写,COMP528作业代写,Multi-Core and Multi-Processor Programming作业代写,C作业代写,Travelling Salesman Problem作业代写,Smallest Sum Insertion作业代写,Liverpool编程代写,COMP528编程代写,Multi-Core and Multi-Processor Programming编程代写,C编程代写,Travelling Salesman Problem编程代写,Smallest Sum Insertion编程代写,Liverpoolprogramming help,COMP528programming help,Multi-Core and Multi-Processor Programmingprogramming help,Cprogramming help,Travelling Salesman Problemprogramming help,Smallest Sum Insertionprogramming help,Liverpoolassignment help,COMP528assignment help,Multi-Core and Multi-Processor Programmingassignment help,Cassignment help,Travelling Salesman Problemassignment help,Smallest Sum Insertionassignment help,Liverpoolsolution,COMP528solution,Multi-Core and Multi-Processor Programmingsolution,Csolution,Travelling Salesman Problemsolution,Smallest Sum Insertionsolution,