https://github.com/seissol/pspamm
A code generator for small matrix multiplications.
https://github.com/seissol/pspamm
Last synced: about 1 year ago
JSON representation
A code generator for small matrix multiplications.
- Host: GitHub
- URL: https://github.com/seissol/pspamm
- Owner: SeisSol
- License: bsd-3-clause
- Created: 2021-07-13T10:56:43.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-01-27T11:41:35.000Z (over 1 year ago)
- Last Synced: 2025-03-21T17:25:06.604Z (about 1 year ago)
- Language: Python
- Homepage:
- Size: 849 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Code Generator for Sparse Matrix Multiplication
Generates inline-Assembly for sparse Matrix Multiplication.
Currently Intel Xeon Phi 'Knights Landing' (AVX512), Haswell/Zen2 (AVX2), and ARM Cortex-A53 (ARMv8) are supported.
## Installation
PspaMM is a Python package. I.e. you may do
```
pip install .
```
to install it.
## Usage
```
pspamm-generator M N K LDA LDB LDC ALPHA BETA --arch {arm,arm_sve{128,256,512,1024,2048},knl,hsw} \
--mtx_filename MTX_FILE_PATH --output_funcname FUNCTION_NAME --output_filename OUTPUT_NAME
```