Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Matrix Multiplication #141

Closed
Pencilcaseman opened this issue Jan 12, 2023 · 1 comment
Closed

Matrix Multiplication #141

Pencilcaseman opened this issue Jan 12, 2023 · 1 comment
Assignees
Labels
c++ Pull requests that update C++ code documentation Improvements or additions to documentation enhancement New feature or request

Comments

@Pencilcaseman
Copy link
Member

Add support for:

  • Matrix-matrix multiplication
  • Matrix-vector multiplication
  • Vector product
@Pencilcaseman Pencilcaseman self-assigned this Jan 12, 2023
@Pencilcaseman Pencilcaseman added documentation Improvements or additions to documentation enhancement New feature or request c++ Pull requests that update C++ code labels Jan 12, 2023
@Pencilcaseman
Copy link
Member Author

Use the librapid::dot(a, b) function for matrix multiplication. It also supports compile tie mapping to DOT, GEMV and GEMM operations with all backends. For example, librapid::dot(librapid::transpose(a), b) is mapped to a single GEMM call with transA = true (assuming a and b are matrices)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
c++ Pull requests that update C++ code documentation Improvements or additions to documentation enhancement New feature or request
Projects
Status: July 2023
Development

No branches or pull requests

1 participant