4 writes to _xSmooth
Microsoft.ML.TimeSeries (4)
AdaptiveSingularSpectrumSequenceModeler.cs (4)
273
_xSmooth
= new CpuAlignedVector(windowSize, CpuMathUtils.GetVectorAlignment());
328
_xSmooth
= new CpuAlignedVector(_windowSize, CpuMathUtils.GetVectorAlignment());
445
_xSmooth
= new CpuAlignedVector(_windowSize, CpuMathUtils.GetVectorAlignment());
1295
_xSmooth
= new CpuAlignedVector(_windowSize, CpuMathUtils.GetVectorAlignment());
7 references to _xSmooth
Microsoft.ML.TimeSeries (7)
AdaptiveSingularSpectrumSequenceModeler.cs (7)
1142
CpuAligenedMathUtils<CpuAlignedMatrixRow>.MatTranTimesSrc(_wTrans, _y,
_xSmooth
);
1147
_state[i] = ((_windowSize - 2 - i) * _state[i + 1] +
_xSmooth
[i + 1]) / (_windowSize - 1 - i);
1150
_state[_windowSize - 2] =
_xSmooth
[_windowSize - 1];
1347
CpuAligenedMathUtils<CpuAlignedMatrixRow>.MatTranTimesSrc(_wTrans, _y,
_xSmooth
);
1349
_alpha[i] =
_xSmooth
[i] / (1 - nu);
1393
CpuAligenedMathUtils<CpuAlignedMatrixRow>.MatTranTimesSrc(_wTrans, _y,
_xSmooth
);
1397
_state[i - 1] =
_xSmooth
[i];