News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Simple Linear Regression

Started by Biterider, July 31, 2022, 08:56:44 PM

Previous topic - Next topic

Biterider

Hi
Inspired by this thread How to Benchmark Code Execution Times, I have the algorithm to calculate the Simple Linear Regression (SLR). The idea behind this is to split the algorithm into 2 parts. The former is independent of the data and can be pre-computed and the latter part processes the actual data. In this way, some processing time can be saved for changeable data, but the number of which does not change.

Additionally, I coded the algorithm for calculating the variance and the Mean Squared Error (MSE), which can be a byproduct of the SLR, to calculate the Coefficient of Determination) R2.

Attached are the routines (64 bit only for QWORD data) and included in the ObjMem library (32 bit and 64 bit for DWORD, QWORD, REAL4 and REAL8 data) :cool:

Biterider

HSE

Very Interesting  :thumbsup:

When writing the BenchmarkUEFI test, I lost an hour with the method of invariants, but failed  :biggrin: Congratulations!!
Equations in Assembly: SmplMath