Skip to main content

Learning how to publish in PyPi through a generic implementation of matrix multiplication

Project description

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)

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ptorru-matmul-0.1.6.tar.gz (2.5 kB view hashes)

Uploaded Source

Built Distribution

ptorru_matmul-0.1.6-py3-none-any.whl (2.6 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page