Skip to content

This program demonstrates Parallel Matrix Multiplication with HPX.

Notifications You must be signed in to change notification settings

codersam108/Matrix_Multiplication_HPX

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Matrix Multiplication with HPX

This C++ program demonstrates Parallel matrix multiplication using the HPX (High Performance ParalleX) library. Matrix multiplication is a fundamental operation in linear algebra and is often used in various scientific and engineering applications.

Overview

The program initializes two matrices, matA and matB, and performs matrix multiplication using HPX's parallel for-loop construct. It divides the work of multiplying each row of matA with each column of matB among multiple threads for parallel execution.

I first made the program without HPX using simple logic of matrix multiplication in c++ and then integrated with HPX.

About

This program demonstrates Parallel Matrix Multiplication with HPX.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published