ptorru-matmul
Learning about pipy, distributing a simple matrix multiply example
To consult how to distribute a package in PyPI take a look at the publish_notes.md
Installing this package
Using PyPI
pip install ptorru-matmul
Alternatively use poetry
poetry add ptorru-matmul
Using this package
import numpy as np
from ptorru_matmul import matmul
sides = 3
a = np.arange(sides*sides).reshape(sides,sides)
b = np.arange(sides*sides).reshape(sides,sides)
c = matmul(a,b)
assert np.array_equal(c, np.matmul(a,b))
print(a,b)
print(c)
Release files for ptorru-matmul 0.1.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| ptorru-matmul-0.1.6.tar.gz | 2.5 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| ptorru_matmul-0.1.6-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 5.0 kB
Release files / ptorru-matmul-0.1.6.tar.gz
| Download URL | ptorru-matmul-0.1.6.tar.gz |
|---|---|
| Size | 2.5 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
7051ddfb9ae266524fadc9caa8bab571b1daeed2ff71e41486034ef8749afe14
|
|
BLAKE2b-256 checksum How to use checksums |
59315bc8c9a2665e68afbf3a041460c6ac4bd08f70b705f7e929428b7216b62a
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.13 CPython/3.9.13 Darwin/21.5.0
|
Release files / ptorru_matmul-0.1.6-py3-none-any.whl
| Download URL | ptorru_matmul-0.1.6-py3-none-any.whl |
|---|---|
| Size | 2.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
72a0b75c50c0f45d15139c7e99dfe6fe95a8c8e12a475bb51b4f97bc9c1aae4a
|
|
BLAKE2b-256 checksum How to use checksums |
ac633ee1d62902205172d5093c9a6548c7d95a1868090ab1ab40dbc6ac88bf5f
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |
| Uploaded via |
poetry/1.1.13 CPython/3.9.13 Darwin/21.5.0
|