How to use the model from Python

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

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

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

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

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