2 writes to _transformInfos
Microsoft.ML.Transforms (2)
RandomFourierFeaturizing.cs (2)
257_transformInfos = new TransformInfo[columns.Length]; 401_transformInfos = new TransformInfo[columnsLength];
13 references to _transformInfos
Microsoft.ML.Transforms (13)
RandomFourierFeaturizing.cs (13)
248if (_transformInfos[col].SrcDim != type.GetVectorSize()) 250new VectorDataViewType(NumberDataViewType.Single, _transformInfos[col].SrcDim).ToString(), type.ToString()); 262_transformInfos[i] = new TransformInfo(Host.Register(string.Format("column{0}", i)), columns[i], 404_transformInfos[i] = new TransformInfo(Host, ctx, 463for (int i = 0; i < _transformInfos.Length; i++) 464_transformInfos[i].Save(ctx, string.Format("MatrixGenerator{0}", i)); 489_types[i] = new VectorDataViewType(NumberDataViewType.Single, _parent._transformInfos[i].RotationTerms == null ? 490_parent._transformInfos[i].NewDim * 2 : _parent._transformInfos[i].NewDim); 518var productAligned = new AlignedArray(RoundUp(_parent._transformInfos[iinfo].NewDim, _cfltAlign), CpuMathUtils.GetVectorAlignment()); 524TransformFeatures(in src, ref dst, _parent._transformInfos[iinfo], featuresAligned, productAligned); 535var productAligned = new AlignedArray(RoundUp(_parent._transformInfos[iinfo].NewDim, _cfltAlign), CpuMathUtils.GetVectorAlignment()); 544TransformFeatures(in oneDimensionalVector, ref dst, _parent._transformInfos[iinfo], featuresAligned, productAligned);