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)
1142CpuAligenedMathUtils<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]; 1347CpuAligenedMathUtils<CpuAlignedMatrixRow>.MatTranTimesSrc(_wTrans, _y, _xSmooth); 1349_alpha[i] = _xSmooth[i] / (1 - nu); 1393CpuAligenedMathUtils<CpuAlignedMatrixRow>.MatTranTimesSrc(_wTrans, _y, _xSmooth); 1397_state[i - 1] = _xSmooth[i];