Given a list of N positive integers, find the maximum number. Searching must be parallel.
10 1 6 53 34 98 34 678 23 23 98
Given a list of 10 integers, find the maximum. Assumption: N is divisible by numprocs.
678
A box containing N particles have velocities v1, v2, ..., vN. Find the Total Kinetic Energy, which is given by
Sum must be parallel.
10 34 89 45 234 78 90 56 43 76 89
Given a list of 10 floating point numbers, find E. Assumption: N is divisible by numprocs.
49362
Multiply 2 matrices of dimensions (NxN) containing integers and print the resulting matrix. Parallel multiplication must be used.
4 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
Given 2 matrices (A,B) of size 4x4, find A*B. Assumption: N is divisible by numprocs.
250 260 270 280 618 644 670 696 986 1028 1070 1112 1354 1412 1470 1528