1 write to _colToActivesIndex
Microsoft.ML.Data (1)
Transforms\RowShufflingTransformer.cs (1)
520_colToActivesIndex = new int[colLim];
12 references to _colToActivesIndex
Microsoft.ML.Data (12)
Transforms\RowShufflingTransformer.cs (12)
522_colToActivesIndex[c] = _input.IsColumnActive(Schema[c]) ? numActive++ : -1; 527int ia = _colToActivesIndex[c]; 671Ch.CheckParam(column.Index < _colToActivesIndex.Length, nameof(column)); 672Ch.Assert((_colToActivesIndex[column.Index] >= 0) == _input.IsColumnActive(column)); 678Ch.Assert(0 <= col && col < _colToActivesIndex.Length); 679Ch.Assert(_colToActivesIndex[col] >= 0); 685Ch.Assert(0 <= col && col < _colToActivesIndex.Length); 686Ch.Assert(_colToActivesIndex[col] >= 0); 688return CreateGetterDelegate<TValue>(_pipes[_colToActivesIndex[col]]); 714Ch.CheckParam(column.Index < _colToActivesIndex.Length, nameof(column)); 715Ch.CheckParam(_colToActivesIndex[column.Index] >= 0, nameof(column), "requested column not active"); 717var originGetter = _getters[_colToActivesIndex[column.Index]];