How to use the model from Python

#Make sure that cython extension is installed
#> pip install --user cython

# The source code of the mul12s_2PT extension needs to be downloaded first
> curl -s "https://ehw.fit.vutbr.cz/evoapproxlib/v1.2022?folder=multiplers/12x12_signed/pareto_pwr_mae&file=mul12s_2PT.c&pyx=bash" | bash

#Finally, the extension can be used in a Python script as follows
> python
import pyximport; pyximport.install()
import mul12s_2PT

def u2s(v): # 24b unsigned to 24b signed
    if v & 8388608:
	return v - 16777216
    return v

wce = e = 0
for i in range(-2**11,2**11):
    for j in range(-2**11,2**11):
        diff = abs(u2s(mul12s_2PT.mul(i,j)) - (i*j))
        if diff > wce: wce = diff
        e += diff

print('average error magnitude (mae)',e/(2.0**(24)))
print('worst-case error magnitude (wce)',wce)