Skip to main content

softfloat and softposit in python

Project description

sfpy

softfloat and softposit in Python

  • support for softfloat float16, float32, and float64
  • support for softposit posit8, quire8, posit16, and quire16

Installation

On most linux distros with CPython 2.7, 3.4, 3.5, 3.6, or 3.7, sfpy should work out of the box:

pip install sfpy

Under the hood, sfpy uses Cython to create bindings for the softposit and softfloat C libraries. The building instructions are tested on Ubuntu 16.04 - for other platforms they may need some adaptation.

Demo

>>> import sfpy
>>> from sfpy import *
>>> a, b = Float16(1.3), Float16(1.4)
>>> a * b - a / b
Float16(0.89208984375)
>>> sfpy.float.flag_get_inexact()
True
>>> a += b
>>> a
Float16(2.69921875)
>>>
>>> x, y = Posit16(3.0), Posit16(3)
>>> x
Posit16(3.0)
>>> x.bits
22528
>>> y
Posit16(2.9802322387695312e-08)
>>> y.bits
3
>>> x * y
Posit16(8.940696716308594e-08)
>>> acc = Posit16(0)
>>> for i in range(10000):
...   acc = acc.fma(x, y)
... 
>>> acc
Posit16(1.9073486328125e-06)
>>> acc.bits
24
>>> q = Quire16(0)
>>> for i in range(10000):
...   q.iqma(x, y)
... 
>>> q
Quire16(0.00089263916015625)
>>> q.bits
64424509440000
>>> q.to_posit()
Posit16(0.00089263916015625)
>>> q.to_posit().bits
490

Building

See BUILDING.

Project details


Download files

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

Source Distributions

No source distribution files available for this release.See tutorial on generating distribution archives.

Built Distributions

sfpy-0.4.0-cp37-cp37m-manylinux1_x86_64.whl (893.5 kB view hashes)

Uploaded CPython 3.7m

sfpy-0.4.0-cp36-cp36m-manylinux1_x86_64.whl (907.7 kB view hashes)

Uploaded CPython 3.6m

sfpy-0.4.0-cp35-cp35m-manylinux1_x86_64.whl (839.7 kB view hashes)

Uploaded CPython 3.5m

sfpy-0.4.0-cp34-cp34m-manylinux1_x86_64.whl (845.2 kB view hashes)

Uploaded CPython 3.4m

sfpy-0.4.0-cp27-cp27mu-manylinux1_x86_64.whl (762.3 kB view hashes)

Uploaded CPython 2.7mu

sfpy-0.4.0-cp27-cp27m-manylinux1_x86_64.whl (762.3 kB view hashes)

Uploaded CPython 2.7m

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