Copy and Paste  -   An Application to Copy/Paste Text  

 
S.No 5740 Name jj assigment Date/Time 11-Jul-2023 08:43:20 AM

Copy text from below

from mpi4py import MPI
import numpy as np
import time

# Function to perform matrix multiplication
def matrix_multiply(a, b):
    rows_a, cols_a = a.shape
    rows_b, cols_b = b.shape

    if cols_a != rows_b:
        raise ValueError("Cannot perform matrix multiplication. Invalid dimensions.")

    result = np.zeros((rows_a, cols_b), dtype=np.float32)

    for i in range(rows_a):
        for j in range(cols_b):
            for k in range(cols_a):
                result[i, j] += a[i, k] * b[k, j]

    return result


# Initialize MPI
comm = MPI.COMM_WORLD
rank = comm.Get_rank()
size = comm.Get_size()

# Matrix size
matrix_sizes = [100, 200, 400, 800]

for size in matrix_sizes:
    # Create matrices on process 0
    if rank == 0:
        a = np.random.rand(size, size).astype(np.float32)
        b = np.random.rand(size, size).astype(np.float32)
    else:
        a = None
        b = None

    # Scatter the matrices to all processes
    a = comm.scatter(a, root=0)
    b = comm.scatter(b, root=0)

    # Perform local matrix multiplication
    local_result = matrix_multiply(a, b)

    # Gather all local results on process 0
    result = comm.gather(local_result, root=0)

    # Combine the results on process 0
    if rank == 0:
        final_result = np.sum(result, axis=0)

        # Print the result if desired
        # print(final_result)

# Measure and compare execution times
if rank == 0:
    sequential_times = []
    parallel_times = []

    for size in matrix_sizes:
        # Sequential matrix multiplication
        a = np.random.rand(size, size).astype(np.float32)
        b = np.random.rand(size, size).astype(np.float32)

        start_time = time.time()
        sequential_result = matrix_multiply(a, b)
        end_time = time.time()
        sequential_times.append(end_time - start_time)

        # Parallel matrix multiplication
        start_time = time.time()
        # Create matrices on process 0
        a = np.random.rand(size, size).astype(np.float32)
        b = np.random.rand(size, size).astype(np.float32)

        # Scatter the matrices to all processes
        a = comm.scatter(a, root=0)
        b = comm.scatter(b, root=0)

        # Perform local matrix multiplication
        local_result = matrix_multiply(a, b)

        # Gather all local results on process 0
        result = comm.gather(local_result, root=0)

        # Combine the results on process 0
        final_result = np.sum(result, axis=0)
        end_time = time.time()
        parallel_times.append(end_time - start_time)

    # Print the execution times
    print("Sequential Execution Times:", sequential_times)
    print("Parallel Execution Times:", parallel_times)





comments powered by Disqus
NEW ENTRIES
S.No Name Entry Time/Date
5813 responsive 02-Oct-2023 11:44:41 AM
5806 lab task 26-Sep-2023 05:28:21 PM
5805 q 4 26-Sep-2023 05:19:19 PM
5804 111 26-Sep-2023 04:45:42 PM
5803 comp 26-Sep-2023 04:14:07 PM
5802 COlor 25-Sep-2023 03:03:06 PM
5801 islamabad 25-Sep-2023 02:56:47 PM
5800 Ikack 25-Sep-2023 02:27:21 PM
5799 Blue Green n 25-Sep-2023 02:01:07 PM
5798 Jask 25-Sep-2023 01:59:04 PM
5797 Blue Green 25-Sep-2023 01:59:02 PM
5796 fire-wood-wa 25-Sep-2023 12:49:39 PM
5795 6001 25-Sep-2023 11:54:34 AM
5794 23-Sep-2023 08:28:04 PM
5793 Child Hot 22-Sep-2023 11:53:03 AM
5792 dfd 22-Sep-2023 10:42:45 AM
5791 Codeeee 22-Sep-2023 09:44:28 AM
5790 HEC 22-Sep-2023 09:41:20 AM
5789 llllllllll 22-Sep-2023 09:20:11 AM
5788 Man 22-Sep-2023 08:58:04 AM
5787 ssss 22-Sep-2023 08:55:24 AM
5786 2 21-Sep-2023 10:40:17 AM
5785 fire wood 21-Sep-2023 10:34:52 AM
5784 calculator 21-Sep-2023 10:09:45 AM
5783 t1 21-Sep-2023 10:02:23 AM
5782 test 21-Sep-2023 09:39:22 AM
5781 design_new 21-Sep-2023 09:09:57 AM
5780 calc_design 21-Sep-2023 08:59:28 AM
5779 stepsis 19-Sep-2023 05:53:02 PM
5778 good 19-Sep-2023 05:51:44 PM

[First] [Prev] 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 [Next] [Last]
 
web counter
web counter


To report any error messages or bugs, or other issues, please send email at: info@pakproject.com