How to use the model from Matlab

% The source code needs to be downloaded first:
websave("mex_evoapprox.c","https://ehw.fit.vutbr.cz/evoapproxlib/mex_evoapprox.c");
websave("mul12u_2JV.c","https://raw.githubusercontent.com/ehw-fit/approxlib/v1.2022/multiplers/12x12_unsigned/pareto_pwr_mae/mul12u_2JV.c");
% Then, the MEX function mul12u_2JV can be compiled:
mex mex_evoapprox.c mul12u_2JV.c -DEXTFUN=mul12u_2JV -output mul12u_2JV;
% Optionally, path to GCC compiler can be specified:
%mex GCC='/usr/local/bin/gcc-6.3' mex_evoapprox.c mul12u_2JV.c -DEXTFUN=mul12u_2JV -output mul12u_2JV;

% Finally, the MEX function can be called in your Matlab code as follows:
mul12u_2JV(123,210) % 123 * 210
mul12u_2JV([1,2,3,4,5],[10,20,30,40,50]) % 1*10 2*20 3*30 4*40 5*50

%DETERMINE ERROR metrics:
BW = 12 %bit-width
allcombs = [0:1:2^(BW+BW)-1]; 
inputs = [floor(allcombs/2^BW); mod(allcombs,2^BW)]; %all possible input vectors

req = inputs(1,:).*inputs(2,:); %exact multiplication
res = mul12u_2JV(inputs(1,:),inputs(2,:));

ED = req - res; %error with respect to the `req`
ep=sum(ED~=0)/length(ED) % error probability
wce=max(abs(ED)) % worst-case error
nwce=max(abs(ED))/(2^(BW+BW)) % normalized worst-case error (multipliers)
nwce=max(abs(ED))/(2^(BW+1)) % normalized worst-case error (adders)
mae=mean(abs(ED)) % mean error distance
mse=mean(ED.^2) % mean square error